mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 04:36:49 +08:00

Co-authored-by: Thomas Ergin <Thomas.Ergin@bmw.de> Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com> Co-authored-by: Marc Bernard <marc@marcbernardtools.com> Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
20 lines
507 B
ABAP
20 lines
507 B
ABAP
INTERFACE zif_abapgit_data_supporter
|
|
PUBLIC.
|
|
|
|
TYPES:
|
|
BEGIN OF ty_object,
|
|
type TYPE zif_abapgit_data_config=>ty_config-type,
|
|
name TYPE zif_abapgit_data_config=>ty_config-name,
|
|
END OF ty_object.
|
|
TYPES:
|
|
ty_objects TYPE SORTED TABLE OF ty_object WITH UNIQUE KEY type name.
|
|
|
|
METHODS is_object_supported
|
|
IMPORTING
|
|
!iv_type TYPE ty_object-type
|
|
!iv_name TYPE ty_object-name
|
|
RETURNING
|
|
VALUE(rv_supported) TYPE abap_bool.
|
|
|
|
ENDINTERFACE.
|