All files / output cl_alv_tree_base.clas.mjs

68.51% Statements 37/54
100% Branches 2/2
9.09% Functions 1/11
68.51% Lines 37/54

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 541x 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 1x 1x 1x 1x 1x 1x 1x 1x 1x
const {cx_root} = await import("./cx_root.clas.mjs");
// cl_alv_tree_base.clas.abap
class cl_alv_tree_base {
  static STATIC_SUPER = undefined;
  static INTERNAL_TYPE = 'CLAS';
  static INTERNAL_NAME = 'CL_ALV_TREE_BASE';
  static IMPLEMENTED_INTERFACES = [];
  static ATTRIBUTES = {"C_HIERARCHY_COLUMN_NAME": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
  "MC_FC_CALCULATE": {"type": () => {return new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
  "MC_FC_CURRENT_VARIANT": {"type": () => {return new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
  "MC_FC_LOAD_VARIANT": {"type": () => {return new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
  "MC_FC_MAINTAIN_VARIANT": {"type": () => {return new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
  "MC_FC_PRINT_BACK": {"type": () => {return new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
  "MC_FC_PRINT_BACK_ALL": {"type": () => {return new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});}, "visibility": "U", "is_constant": "X", "is_class": "X"},
  "MC_FC_SAVE_VARIANT": {"type": () => {return new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});}, "visibility": "U", "is_constant": "X", "is_class": "X"}};
  static METHODS = {};
  constructor() {
    this.me = new abap.types.ABAPObject();
    this.me.set(this);
    this.INTERNAL_ID = abap.internalIdCounter++;
    this.FRIENDS_ACCESS_INSTANCE = {
    };
    this.c_hierarchy_column_name = cl_alv_tree_base.c_hierarchy_column_name;
    this.mc_fc_calculate = cl_alv_tree_base.mc_fc_calculate;
    this.mc_fc_current_variant = cl_alv_tree_base.mc_fc_current_variant;
    this.mc_fc_load_variant = cl_alv_tree_base.mc_fc_load_variant;
    this.mc_fc_maintain_variant = cl_alv_tree_base.mc_fc_maintain_variant;
    this.mc_fc_print_back = cl_alv_tree_base.mc_fc_print_back;
    this.mc_fc_print_back_all = cl_alv_tree_base.mc_fc_print_back_all;
    this.mc_fc_save_variant = cl_alv_tree_base.mc_fc_save_variant;
  }
  async constructor_(INPUT) {
    if (super.constructor_) { await super.constructor_(INPUT); }
    return this;
  }
}
abap.Classes['CL_ALV_TREE_BASE'] = cl_alv_tree_base;
cl_alv_tree_base.c_hierarchy_column_name = new abap.types.String({qualifiedName: "STRING"});
cl_alv_tree_base.c_hierarchy_column_name.set('&Hierarchy');
cl_alv_tree_base.mc_fc_calculate = new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});
cl_alv_tree_base.mc_fc_calculate.set('&CALC');
cl_alv_tree_base.mc_fc_current_variant = new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});
cl_alv_tree_base.mc_fc_current_variant.set('&COL0');
cl_alv_tree_base.mc_fc_load_variant = new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});
cl_alv_tree_base.mc_fc_load_variant.set('&LOAD');
cl_alv_tree_base.mc_fc_maintain_variant = new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});
cl_alv_tree_base.mc_fc_maintain_variant.set('&MAINTAIN');
cl_alv_tree_base.mc_fc_print_back = new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});
cl_alv_tree_base.mc_fc_print_back.set('&PRINT_BACK');
cl_alv_tree_base.mc_fc_print_back_all = new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});
cl_alv_tree_base.mc_fc_print_back_all.set('&PRINT_BACK_ALL');
cl_alv_tree_base.mc_fc_save_variant = new abap.types.Character(70, {"qualifiedName":"UI_FUNC","ddicName":"UI_FUNC","description":"UI_FUNC"});
cl_alv_tree_base.mc_fc_save_variant.set('&SAVE');
export {cl_alv_tree_base};