Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Mar 23, 2017
1 parent bc53919 commit 8034b72
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions src/zcl_swag_spec.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,32 @@ CLASS zcl_swag_spec DEFINITION
METHODS generate
RETURNING
VALUE(rv_spec) TYPE string .
protected section.

data MV_TITLE type STRING .
data MV_DESCRIPTION type STRING .
data MT_META type ZCL_SWAG=>TY_META_INTERNAL_TT .
data MV_BASE type STRING .
data MT_DEFINITIONS type STRING_TABLE .

methods DEFINITIONS
returning
value(RV_DEFS) type STRING .
methods PATH
importing
!IS_META type ZCL_SWAG=>TY_META_INTERNAL
returning
value(RV_PATH) type STRING .
methods PARAMETERS
importing
!IS_META type ZCL_SWAG=>TY_META_INTERNAL
returning
value(RV_PARAMETERS) type STRING .
methods RESPONSE
importing
!IS_META type ZCL_SWAG=>TY_META_INTERNAL
returning
value(RV_RESPONSE) type STRING .
PROTECTED SECTION.

DATA mv_title TYPE string .
DATA mv_description TYPE string .
DATA mt_meta TYPE zcl_swag=>ty_meta_internal_tt .
DATA mv_base TYPE string .
DATA mt_definitions TYPE string_table .

METHODS definitions
RETURNING
VALUE(rv_defs) TYPE string .
METHODS path
IMPORTING
!is_meta TYPE zcl_swag=>ty_meta_internal
RETURNING
VALUE(rv_path) TYPE string .
METHODS parameters
IMPORTING
!is_meta TYPE zcl_swag=>ty_meta_internal
RETURNING
VALUE(rv_parameters) TYPE string .
METHODS response
IMPORTING
!is_meta TYPE zcl_swag=>ty_meta_internal
RETURNING
VALUE(rv_response) TYPE string .
PRIVATE SECTION.
ENDCLASS.

Expand Down Expand Up @@ -257,7 +257,7 @@ CLASS ZCL_SWAG_SPEC IMPLEMENTATION.
ENDMETHOD.


METHOD PATH.
METHOD path.

DATA: lv_name TYPE string,
lv_offset1 TYPE i,
Expand Down

0 comments on commit 8034b72

Please sign in to comment.