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

* core part refactored #2436 * indentation * fix implementations * delete ZCL_ABAPGIT_COMPARISON_NULL * pretty print * Update serializers.md * downport
18 lines
324 B
ABAP
18 lines
324 B
ABAP
INTERFACE zif_abapgit_comparator
|
|
PUBLIC .
|
|
|
|
|
|
TYPES:
|
|
BEGIN OF ty_result,
|
|
text TYPE string,
|
|
END OF ty_result .
|
|
|
|
METHODS compare
|
|
IMPORTING
|
|
!io_remote TYPE REF TO zcl_abapgit_xml_input
|
|
RETURNING
|
|
VALUE(rs_result) TYPE ty_result
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
ENDINTERFACE.
|