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 | 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_aggregations.clas.abap class cl_salv_aggregations { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'CL_SALV_AGGREGATIONS'; static IMPLEMENTED_INTERFACES = []; static ATTRIBUTES = {}; static METHODS = {"ADD_AGGREGATION": {"visibility": "U", "parameters": {"COLUMNNAME": {"type": () => {return new abap.types.Character(4);}, "is_optional": " "}, "AGGREGATION": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "is_optional": " "}}}}; constructor() { this.me = new abap.types.ABAPObject(); this.me.set(this); this.INTERNAL_ID = abap.internalIdCounter++; this.FRIENDS_ACCESS_INSTANCE = { "add_aggregation": this.add_aggregation.bind(this), }; } async constructor_(INPUT) { if (super.constructor_) { await super.constructor_(INPUT); } return this; } async add_aggregation(INPUT) { let columnname = INPUT?.columnname; let aggregation = new abap.types.Integer({qualifiedName: "I"}); if (INPUT && INPUT.aggregation) {aggregation.set(INPUT.aggregation);} if (INPUT === undefined || INPUT.aggregation === undefined) {aggregation = abap.Classes['IF_SALV_C_AGGREGATION'].if_salv_c_aggregation$total;} abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo'))); } } abap.Classes['CL_SALV_AGGREGATIONS'] = cl_salv_aggregations; export {cl_salv_aggregations}; |