mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-04 05:47:17 +08:00

* add global classes for objects * fix metadata * comment old code fix serializer class move missing interfaces * keep objects and bridge as local * fix syntax errors and remove SICF -> tadir dependency, instead tadir -> SICF * remove dependency TABL -> lcl_popups * fix indentation * remove old includes * fix parser errors * fix deserializing
32 lines
659 B
ABAP
32 lines
659 B
ABAP
CLASS zcl_abapgit_object_samc DEFINITION PUBLIC INHERITING FROM zcl_abapgit_objects_saxx_super FINAL.
|
|
|
|
PROTECTED SECTION.
|
|
METHODS:
|
|
get_persistence_class_name REDEFINITION,
|
|
get_data_class_name REDEFINITION,
|
|
get_data_structure_name REDEFINITION.
|
|
|
|
ENDCLASS.
|
|
|
|
CLASS zcl_abapgit_object_samc IMPLEMENTATION.
|
|
|
|
METHOD get_data_class_name.
|
|
|
|
r_data_class_name = 'CL_AMC_APPLICATION_OBJ_DATA'.
|
|
|
|
ENDMETHOD.
|
|
|
|
METHOD get_data_structure_name.
|
|
|
|
r_data_structure_name = 'AMC_APPLICATION_COMPLETE'.
|
|
|
|
ENDMETHOD.
|
|
|
|
METHOD get_persistence_class_name.
|
|
|
|
r_persistence_class_name = 'CL_AMC_APPLICATION_OBJ_PERS'.
|
|
|
|
ENDMETHOD.
|
|
|
|
ENDCLASS.
|