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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const {cl_salv_column_list} = await import("./cl_salv_column_list.clas.mjs");
const {cx_root} = await import("./cx_root.clas.mjs");
// cl_salv_column_table.clas.abap
class cl_salv_column_table extends cl_salv_column_list {
static STATIC_SUPER = cl_salv_column_list;
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'CL_SALV_COLUMN_TABLE';
static IMPLEMENTED_INTERFACES = [];
static ATTRIBUTES = {};
static METHODS = {"GET_OUTPUT_LENGTH": {"visibility": "U", "parameters": {"LENGTH": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "is_optional": " ", "parm_kind": "R", "type_name": "IntegerType"}}}};
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,
"get_output_length": this.get_output_length.bind(this),
};
}
async constructor_(INPUT) {
if (super.constructor_) { await super.constructor_(INPUT); }
return this;
}
async get_output_length() {
let length = new abap.types.Integer({qualifiedName: "I"});
abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo')));
return length;
}
}
abap.Classes['CL_SALV_COLUMN_TABLE'] = cl_salv_column_table;
export {cl_salv_column_table}; |