mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 13:03:01 +08:00
14 lines
451 B
ABAP
14 lines
451 B
ABAP
INTERFACE zif_abapgit_aff_registry
|
|
PUBLIC .
|
|
|
|
METHODS:
|
|
"! Returns TRUE if the object type is supported by ABAP file formats (AFF) in abapGit.<br/>
|
|
"! Either there is a (standalone AFF capable) object handler,
|
|
"! or object handler calls the AFF framework in newer ABAP systems.
|
|
is_supported_object_type
|
|
IMPORTING
|
|
iv_obj_type TYPE tadir-object
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool.
|
|
ENDINTERFACE.
|