mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 04:36:49 +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
14 lines
394 B
ABAP
14 lines
394 B
ABAP
INTERFACE zif_abapgit_object_enho PUBLIC.
|
|
|
|
METHODS:
|
|
deserialize
|
|
IMPORTING io_xml TYPE REF TO zcl_abapgit_xml_input
|
|
iv_package TYPE devclass
|
|
RAISING zcx_abapgit_exception,
|
|
serialize
|
|
IMPORTING io_xml TYPE REF TO zcl_abapgit_xml_output
|
|
ii_enh_tool TYPE REF TO if_enh_tool
|
|
RAISING zcx_abapgit_exception.
|
|
|
|
ENDINTERFACE.
|