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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | 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_salv_functions_list.clas.abap class cl_salv_functions_list { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'CL_SALV_FUNCTIONS_LIST'; static IMPLEMENTED_INTERFACES = []; static ATTRIBUTES = {}; static METHODS = {"SET_ALL": {"visibility": "U", "parameters": {"FLAG": {"type": () => {return new abap.types.Character(1, {"qualifiedName":"ABAP_BOOL","ddicName":"ABAP_BOOL"});}, "is_optional": " "}}}, "GET_FUNCTIONS": {"visibility": "U", "parameters": {"SDF": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}}}, "SET_DEFAULT": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.Character(1, {"qualifiedName":"ABAP_BOOL","ddicName":"ABAP_BOOL"});}, "is_optional": " "}}}, "ADD_FUNCTION": {"visibility": "U", "parameters": {"NAME": {"type": () => {return new abap.types.Character(4);}, "is_optional": " "}, "ICON": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}, "TEXT": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}, "TOOLTIP": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " "}, "POSITION": {"type": () => {return new abap.types.Character(4);}, "is_optional": " "}}}}; constructor() { this.me = new abap.types.ABAPObject(); this.me.set(this); this.INTERNAL_ID = abap.internalIdCounter++; this.FRIENDS_ACCESS_INSTANCE = { "set_all": this.set_all.bind(this), "get_functions": this.get_functions.bind(this), "set_default": this.set_default.bind(this), "add_function": this.add_function.bind(this), }; } async constructor_(INPUT) { if (super.constructor_) { await super.constructor_(INPUT); } return this; } async set_all(INPUT) { let flag = new abap.types.Character(1, {"qualifiedName":"ABAP_BOOL","ddicName":"ABAP_BOOL"}); if (INPUT && INPUT.flag) {flag.set(INPUT.flag);} abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo'))); } async get_functions() { let sdf = new abap.types.String({qualifiedName: "STRING"}); abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo'))); return sdf; } async set_default(INPUT) { let value = new abap.types.Character(1, {"qualifiedName":"ABAP_BOOL","ddicName":"ABAP_BOOL"}); if (INPUT && INPUT.value) {value.set(INPUT.value);} if (INPUT === undefined || INPUT.value === undefined) {value = abap.builtin.abap_true;} abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo'))); } async add_function(INPUT) { let name = INPUT?.name; let icon = new abap.types.String({qualifiedName: "STRING"}); if (INPUT && INPUT.icon) {icon.set(INPUT.icon);} let text = new abap.types.String({qualifiedName: "STRING"}); if (INPUT && INPUT.text) {text.set(INPUT.text);} let tooltip = INPUT?.tooltip; if (tooltip?.getQualifiedName === undefined || tooltip.getQualifiedName() !== "STRING") { tooltip = undefined; } if (tooltip === undefined) { tooltip = new abap.types.String({qualifiedName: "STRING"}).set(INPUT.tooltip); } let position = INPUT?.position; abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo'))); } } abap.Classes['CL_SALV_FUNCTIONS_LIST'] = cl_salv_functions_list; export {cl_salv_functions_list}; |