mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
fix indentation
This commit is contained in:
parent
7ecbc07e19
commit
df0f3152ef
|
@ -1,29 +1,29 @@
|
||||||
class ZCL_ABAPGIT_XML_INPUT definition
|
CLASS zcl_abapgit_xml_input DEFINITION
|
||||||
public
|
PUBLIC
|
||||||
inheriting from ZCL_ABAPGIT_XML
|
INHERITING FROM zcl_abapgit_xml
|
||||||
create public .
|
CREATE PUBLIC .
|
||||||
|
|
||||||
public section.
|
PUBLIC SECTION.
|
||||||
|
|
||||||
methods CONSTRUCTOR
|
METHODS constructor
|
||||||
importing
|
IMPORTING
|
||||||
!IV_XML type CLIKE
|
!iv_xml TYPE clike
|
||||||
raising
|
RAISING
|
||||||
ZCX_ABAPGIT_EXCEPTION .
|
zcx_abapgit_exception .
|
||||||
methods READ
|
METHODS read
|
||||||
importing
|
IMPORTING
|
||||||
!IV_NAME type CLIKE
|
!iv_name TYPE clike
|
||||||
changing
|
CHANGING
|
||||||
!CG_DATA type ANY
|
!cg_data TYPE any
|
||||||
raising
|
RAISING
|
||||||
ZCX_ABAPGIT_EXCEPTION .
|
zcx_abapgit_exception .
|
||||||
methods GET_RAW
|
METHODS get_raw
|
||||||
returning
|
RETURNING
|
||||||
value(RI_RAW) type ref to IF_IXML_DOCUMENT .
|
VALUE(ri_raw) TYPE REF TO if_ixml_document .
|
||||||
* todo, add read_xml to match add_xml in lcl_xml_output
|
* todo, add read_xml to match add_xml in lcl_xml_output
|
||||||
methods GET_METADATA
|
METHODS get_metadata
|
||||||
returning
|
RETURNING
|
||||||
value(RS_METADATA) type ZIF_ABAPGIT_DEFINITIONS=>TY_METADATA .
|
VALUE(rs_metadata) TYPE zif_abapgit_definitions=>ty_metadata .
|
||||||
PRIVATE SECTION.
|
PRIVATE SECTION.
|
||||||
METHODS: fix_xml.
|
METHODS: fix_xml.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user