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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const {cl_gui_container} = await import("./cl_gui_container.clas.mjs"); const {cx_root} = await import("./cx_root.clas.mjs"); // cl_gui_custom_container.clas.abap class cl_gui_custom_container extends cl_gui_container { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'CL_GUI_CUSTOM_CONTAINER'; static IMPLEMENTED_INTERFACES = []; static ATTRIBUTES = {}; static METHODS = {"CONSTRUCTOR": {"visibility": "U", "parameters": {"CONTAINER_NAME": {"type": () => {return new abap.types.Character();}, "is_optional": " "}}}}; constructor() { const sup = super(); this.me = new abap.types.ABAPObject(); this.me.set(this); this.INTERNAL_ID = abap.internalIdCounter++; this.FRIENDS_ACCESS_INSTANCE = { "SUPER": sup.FRIENDS_ACCESS_INSTANCE, }; } async constructor_(INPUT) { let container_name = INPUT?.container_name; abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.IntegerFactory.get(2))); return this; } } abap.Classes['CL_GUI_CUSTOM_CONTAINER'] = cl_gui_custom_container; export {cl_gui_custom_container}; |