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 1x | const {cx_root} = await import("./cx_root.clas.mjs");
// cl_dd_input_element.clas.abap
class cl_dd_input_element {
static STATIC_SUPER = undefined;
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'CL_DD_INPUT_ELEMENT';
static IMPLEMENTED_INTERFACES = [];
static ATTRIBUTES = {"VALUE": {"type": () => {return new abap.types.Character(250, {"qualifiedName":"sdydo_value"});}, "visibility": "U", "is_constant": " ", "is_class": " "}};
static METHODS = {"SET_VALUE": {"visibility": "U", "parameters": {"VALUE": {"type": () => {return new abap.types.Character(250, {"qualifiedName":"sdydo_value"});}, "is_optional": " ", "parm_kind": "I", "type_name": "CharacterType"}}}};
constructor() {
this.me = new abap.types.ABAPObject();
this.me.set(this);
this.INTERNAL_ID = abap.internalIdCounter++;
this.FRIENDS_ACCESS_INSTANCE = {
"set_value": this.set_value.bind(this),
};
this.value = new abap.types.Character(250, {"qualifiedName":"sdydo_value"});
}
async constructor_(INPUT) {
if (super.constructor_) { await super.constructor_(INPUT); }
return this;
}
async set_value(INPUT) {
let value = new abap.types.Character(250, {"qualifiedName":"sdydo_value"});
if (INPUT && INPUT.value) {value.set(INPUT.value);}
return;
}
}
abap.Classes['CL_DD_INPUT_ELEMENT'] = cl_dd_input_element;
export {cl_dd_input_element}; |