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 | 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_dragdropobject.clas.abap
class cl_dragdropobject {
static STATIC_SUPER = undefined;
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'CL_DRAGDROPOBJECT';
static IMPLEMENTED_INTERFACES = [];
static ATTRIBUTES = {"OBJECT": {"type": () => {return new abap.types.ABAPObject({qualifiedName: undefined, RTTIName: undefined});}, "visibility": "U", "is_constant": " ", "is_class": " "},
"EFFECT": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": " ", "is_class": " "},
"FLAVOR": {"type": () => {return new abap.types.Character(40, {});}, "visibility": "U", "is_constant": " ", "is_class": " "},
"STATE": {"type": () => {return new abap.types.Integer({qualifiedName: "I"});}, "visibility": "U", "is_constant": " ", "is_class": " "}};
static METHODS = {"ABORT": {"visibility": "U", "parameters": {}}};
constructor() {
this.me = new abap.types.ABAPObject();
this.me.set(this);
this.INTERNAL_ID = abap.internalIdCounter++;
this.FRIENDS_ACCESS_INSTANCE = {
"abort": this.abort.bind(this),
};
this.object = new abap.types.ABAPObject({qualifiedName: undefined, RTTIName: undefined});
this.effect = new abap.types.Integer({qualifiedName: "I"});
this.flavor = new abap.types.Character(40, {});
this.state = new abap.types.Integer({qualifiedName: "I"});
this.state.set(0);
}
async constructor_(INPUT) {
if (super.constructor_) { await super.constructor_(INPUT); }
return this;
}
async abort() {
return;
}
}
abap.Classes['CL_DRAGDROPOBJECT'] = cl_dragdropobject;
export {cl_dragdropobject}; |