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 {cx_root} = await import("./cx_root.clas.mjs");
// zcl_abapgit_aff_injector.clas.abap
class zcl_abapgit_aff_injector {
static STATIC_SUPER = undefined;
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'ZCL_ABAPGIT_AFF_INJECTOR';
static IMPLEMENTED_INTERFACES = [];
static ATTRIBUTES = {};
static METHODS = {"SET_REGISTRY": {"visibility": "U", "parameters": {"II_REGISTRY": {"type": () => {return new abap.types.ABAPObject({qualifiedName: "ZIF_ABAPGIT_AFF_REGISTRY", RTTIName: "\\INTERFACE=ZIF_ABAPGIT_AFF_REGISTRY"});}, "is_optional": " ", "parm_kind": "I", "type_name": "ObjectReferenceType"}}}};
constructor() {
this.me = new abap.types.ABAPObject();
this.me.set(this);
this.INTERNAL_ID = abap.internalIdCounter++;
this.FRIENDS_ACCESS_INSTANCE = {
};
}
async constructor_(INPUT) {
if (super.constructor_) { await super.constructor_(INPUT); }
return this;
}
async set_registry(INPUT) {
return zcl_abapgit_aff_injector.set_registry(INPUT);
}
static async set_registry(INPUT) {
let ii_registry = INPUT?.ii_registry;
if (ii_registry?.getQualifiedName === undefined || ii_registry.getQualifiedName() !== "ZIF_ABAPGIT_AFF_REGISTRY") { ii_registry = undefined; }
if (ii_registry === undefined) { ii_registry = new abap.types.ABAPObject({qualifiedName: "ZIF_ABAPGIT_AFF_REGISTRY", RTTIName: "\\INTERFACE=ZIF_ABAPGIT_AFF_REGISTRY"}).set(INPUT.ii_registry); }
abap.Classes['ZCL_ABAPGIT_AFF_FACTORY'].gi_registry.set(ii_registry);
}
}
abap.Classes['ZCL_ABAPGIT_AFF_INJECTOR'] = zcl_abapgit_aff_injector;
export {zcl_abapgit_aff_injector}; |