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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 1x 1x 1x 1x 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_salv_columns_table.clas.abap
class cl_salv_columns_table {
static STATIC_SUPER = undefined;
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'CL_SALV_COLUMNS_TABLE';
static IMPLEMENTED_INTERFACES = [];
static ATTRIBUTES = {};
static METHODS = {"SET_CELL_TYPE_COLUMN": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " ", "parm_kind": "I", "type_name": "StringType"}}},
"SET_OPTIMIZE": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.Character(1, {"qualifiedName":"ABAP_BOOL","ddicName":"ABAP_BOOL"});}, "is_optional": " ", "parm_kind": "I", "type_name": "CharacterType"}}},
"SET_COLOR_COLUMN": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " ", "parm_kind": "I", "type_name": "StringType"}}},
"GET_COLUMN": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.ABAPObject({qualifiedName: "CL_SALV_COLUMN", RTTIName: "\\CLASS=CL_SALV_COLUMN"});}, "is_optional": " ", "parm_kind": "R", "type_name": "ObjectReferenceType"}, "COLUMNNAME": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " ", "parm_kind": "I", "type_name": "StringType"}}},
"GET": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " ", "parm_kind": "R", "type_name": "StringType"}}},
"SET_EXCEPTION_COLUMN": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.Character(4);}, "is_optional": " ", "parm_kind": "I", "type_name": "AnyType"}}},
"SET_HYPERLINK_ENTRY_COLUMN": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.Character(4);}, "is_optional": " ", "parm_kind": "I", "type_name": "AnyType"}}}};
constructor() {
this.me = new abap.types.ABAPObject();
this.me.set(this);
this.INTERNAL_ID = abap.internalIdCounter++;
this.FRIENDS_ACCESS_INSTANCE = {
"set_cell_type_column": this.set_cell_type_column.bind(this),
"set_optimize": this.set_optimize.bind(this),
"set_color_column": this.set_color_column.bind(this),
"get_column": this.get_column.bind(this),
"get": this.get.bind(this),
"set_exception_column": this.set_exception_column.bind(this),
"set_hyperlink_entry_column": this.set_hyperlink_entry_column.bind(this),
};
}
async constructor_(INPUT) {
if (super.constructor_) { await super.constructor_(INPUT); }
return this;
}
async set_hyperlink_entry_column(INPUT) {
let value = INPUT?.value;
abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo')));
}
async get_column(INPUT) {
let value = new abap.types.ABAPObject({qualifiedName: "CL_SALV_COLUMN", RTTIName: "\\CLASS=CL_SALV_COLUMN"});
let columnname = INPUT?.columnname;
if (columnname?.getQualifiedName === undefined || columnname.getQualifiedName() !== "STRING") { columnname = undefined; }
if (columnname === undefined) { columnname = new abap.types.String({qualifiedName: "STRING"}).set(INPUT.columnname); }
abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo')));
return value;
}
async set_exception_column(INPUT) {
let value = INPUT?.value;
abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo')));
}
async set_cell_type_column(INPUT) {
let value = INPUT?.value;
if (value?.getQualifiedName === undefined || value.getQualifiedName() !== "STRING") { value = undefined; }
if (value === undefined) { value = new abap.types.String({qualifiedName: "STRING"}).set(INPUT.value); }
abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo')));
}
async set_optimize(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 get() {
let value = new abap.types.String({qualifiedName: "STRING"});
abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo')));
return value;
}
async set_color_column(INPUT) {
let value = INPUT?.value;
if (value?.getQualifiedName === undefined || value.getQualifiedName() !== "STRING") { value = undefined; }
if (value === undefined) { value = new abap.types.String({qualifiedName: "STRING"}).set(INPUT.value); }
abap.statements.assert(abap.compare.eq(abap.IntegerFactory.get(1), abap.CharacterFactory.get(4, 'todo')));
}
}
abap.Classes['CL_SALV_COLUMNS_TABLE'] = cl_salv_columns_table;
export {cl_salv_columns_table}; |