Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const {cx_root} = await import("./cx_root.clas.mjs"); // cl_gui_container.clas.abap class cl_gui_container { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'CL_GUI_CONTAINER'; static IMPLEMENTED_INTERFACES = []; static ATTRIBUTES = {"SCREEN0": {"type": () => {return new abap.types.ABAPObject({qualifiedName: "CL_GUI_CONTAINER", RTTIName: "\\CLASS=CL_GUI_CONTAINER"});}, "visibility": "U", "is_constant": " ", "is_class": "X"}, "DEFAULT_SCREEN": {"type": () => {return new abap.types.ABAPObject({qualifiedName: "CL_GUI_CONTAINER", RTTIName: "\\CLASS=CL_GUI_CONTAINER"});}, "visibility": "U", "is_constant": " ", "is_class": "X"}, "VISIBLE_TRUE": {"type": () => {return new abap.types.Character(1, {});}, "visibility": "U", "is_constant": "X", "is_class": "X"}, "VISIBLE_FALSE": {"type": () => {return new abap.types.Character(1, {});}, "visibility": "U", "is_constant": "X", "is_class": "X"}}; static METHODS = {"FREE": {"visibility": "U", "parameters": {}}}; constructor() { this.me = new abap.types.ABAPObject(); this.me.set(this); this.INTERNAL_ID = abap.internalIdCounter++; this.FRIENDS_ACCESS_INSTANCE = { "free": this.free.bind(this), }; this.screen0 = cl_gui_container.screen0; this.default_screen = cl_gui_container.default_screen; this.visible_true = cl_gui_container.visible_true; this.visible_false = cl_gui_container.visible_false; } async constructor_(INPUT) { if (super.constructor_) { await super.constructor_(INPUT); } return this; } async free() { abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(13, 'not supported'))); } } abap.Classes['CL_GUI_CONTAINER'] = cl_gui_container; cl_gui_container.screen0 = new abap.types.ABAPObject({qualifiedName: "CL_GUI_CONTAINER", RTTIName: "\\CLASS=CL_GUI_CONTAINER"}); cl_gui_container.default_screen = new abap.types.ABAPObject({qualifiedName: "CL_GUI_CONTAINER", RTTIName: "\\CLASS=CL_GUI_CONTAINER"}); cl_gui_container.visible_true = new abap.types.Character(1, {}); cl_gui_container.visible_true.set('1'); cl_gui_container.visible_false = new abap.types.Character(1, {}); cl_gui_container.visible_false.set('0'); export {cl_gui_container}; |