mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 05:18:59 +08:00

* change xml references to interfaces changed reference in interfaces: - zif_abapgit_comparator - zif_abapgit_oo_object_fnc * change reference of xml in dependent objects Co-authored-by: Lars Hvam <larshp@hotmail.com>
19 lines
375 B
ABAP
19 lines
375 B
ABAP
INTERFACE zif_abapgit_comparator
|
|
PUBLIC .
|
|
|
|
|
|
TYPES:
|
|
BEGIN OF ty_result,
|
|
text TYPE string,
|
|
END OF ty_result .
|
|
|
|
METHODS compare
|
|
IMPORTING
|
|
!ii_remote TYPE REF TO zif_abapgit_xml_input
|
|
!ii_log TYPE REF TO zif_abapgit_log
|
|
RETURNING
|
|
VALUE(rs_result) TYPE ty_result
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
ENDINTERFACE.
|