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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 2x 2x 2x 1x 1x 1x | const {cx_dynamic_check} = await import("./cx_dynamic_check.clas.mjs");
const {cx_root} = await import("./cx_root.clas.mjs");
// cx_sy_conversion_codepage.clas.abap
class cx_sy_conversion_codepage extends cx_dynamic_check {
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'CX_SY_CONVERSION_CODEPAGE';
static IMPLEMENTED_INTERFACES = ["IF_MESSAGE","IF_MESSAGE"];
static ATTRIBUTES = {"SOURCE_EXTRACT": {"type": () => {return new abap.types.XString({qualifiedName: "XSTRING"});}, "visibility": "U", "is_constant": " ", "is_class": " "}};
static METHODS = {};
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,
};
this.source_extract = new abap.types.XString({qualifiedName: "XSTRING"});
}
async constructor_(INPUT) {
if (super.constructor_) { await super.constructor_(INPUT); }
return this;
}
}
abap.Classes['CX_SY_CONVERSION_CODEPAGE'] = cx_sy_conversion_codepage;
export {cx_sy_conversion_codepage}; |