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

* Force XSLT activation during deserialize
* Revert "Force XSLT activation during deserialize"
This reverts commit 7d6fc64ddb
.
* Create empty class/interface before DDIC phase
Fix #5392
* pretty printer ZCL_ABAPGIT_OBJECT_INTF
* abaplint zcl_abapgit_object_clas
* Update zcl_abapgit_object_clas.clas.abap
* Update zcl_abapgit_object_dtel.clas.abap
* Update zcl_abapgit_object_intf.clas.abap
* Update zcl_abapgit_object_tabl.clas.abap
* Update zcl_abapgit_object_ttyp.clas.abap
* Update zcl_abapgit_objects.clas.abap
* Update zcl_abapgit_object_clas.clas.abap
* Update zcl_abapgit_object_intf.clas.abap
* Update zif_abapgit_object.intf.abap
* Update src/objects/zcl_abapgit_object_intf.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update order numbers
Co-authored-by: sandraros <sandra.rossi@gmail.com>
Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
Co-authored-by: Lars Hvam <larshp@hotmail.com>
74 lines
2.1 KiB
ABAP
74 lines
2.1 KiB
ABAP
INTERFACE zif_abapgit_object
|
|
PUBLIC .
|
|
|
|
DATA mo_files TYPE REF TO zcl_abapgit_objects_files .
|
|
|
|
CONSTANTS:
|
|
BEGIN OF gc_step_id,
|
|
early TYPE zif_abapgit_definitions=>ty_deserialization_step VALUE `EARLY`,
|
|
abap TYPE zif_abapgit_definitions=>ty_deserialization_step VALUE `ABAP`,
|
|
ddic TYPE zif_abapgit_definitions=>ty_deserialization_step VALUE `DDIC`,
|
|
late TYPE zif_abapgit_definitions=>ty_deserialization_step VALUE `LATE`,
|
|
END OF gc_step_id.
|
|
|
|
CONSTANTS c_abap_version_sap_cp TYPE progdir-uccheck VALUE '5' ##NO_TEXT.
|
|
CONSTANTS c_abap_version_default TYPE progdir-uccheck VALUE 'X' ##NO_TEXT.
|
|
|
|
METHODS serialize
|
|
IMPORTING
|
|
!io_xml TYPE REF TO zif_abapgit_xml_output
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS deserialize
|
|
IMPORTING
|
|
!iv_package TYPE devclass
|
|
!io_xml TYPE REF TO zif_abapgit_xml_input
|
|
!iv_step TYPE zif_abapgit_definitions=>ty_deserialization_step
|
|
!ii_log TYPE REF TO zif_abapgit_log
|
|
!iv_transport TYPE trkorr
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS delete
|
|
IMPORTING
|
|
!iv_package TYPE devclass
|
|
!iv_transport TYPE trkorr
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS exists
|
|
RETURNING
|
|
VALUE(rv_bool) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS is_locked
|
|
RETURNING
|
|
VALUE(rv_is_locked) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS is_active
|
|
RETURNING
|
|
VALUE(rv_active) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS changed_by
|
|
RETURNING
|
|
VALUE(rv_user) TYPE syuname
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS jump
|
|
RETURNING
|
|
VALUE(rv_exit) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_metadata
|
|
RETURNING
|
|
VALUE(rs_metadata) TYPE zif_abapgit_definitions=>ty_metadata .
|
|
METHODS get_comparator
|
|
RETURNING
|
|
VALUE(ri_comparator) TYPE REF TO zif_abapgit_comparator
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_deserialize_steps
|
|
RETURNING
|
|
VALUE(rt_steps) TYPE zif_abapgit_definitions=>ty_deserialization_step_tt .
|
|
ENDINTERFACE.
|