Skip to content

Commit

Permalink
Align spaces (#617)
Browse files Browse the repository at this point in the history
Co-authored-by: Lars Hvam <[email protected]>
  • Loading branch information
albertmink and larshp authored Jun 6, 2024
1 parent 9a57bc3 commit 30c13ef
Show file tree
Hide file tree
Showing 28 changed files with 132 additions and 131 deletions.
1 change: 1 addition & 0 deletions abaplint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
},
"rules": {
"align_parameters": true,
"align_type_expressions": true,
"cds_comment_style": true,
"cds_legacy_view": true,
"cds_parser_error": true,
Expand Down
6 changes: 3 additions & 3 deletions file-formats/aobj/type/zif_aff_aobj_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ INTERFACE zif_aff_aobj_v1
"! <p class="shorttext">Write Class</p>
"! Name of executable class or program which writes the data to the archive
"! $required
write_class TYPE zif_aff_types_v1=>ty_object_name_30,
write_class TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext">Delete Class</p>
"! Name of executable class or program which deletes the data from the tables
"! $required
delete_class TYPE zif_aff_types_v1=>ty_object_name_30,
delete_class TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext">Reload Class</p>
"! Name of executable class or program which reloads the data to the tables (may be empty)
reload_class TYPE zif_aff_types_v1=>ty_object_name_30,
reload_class TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext">Storage Class</p>
"! Name of class which stores and retrieves archived data. The class needs to implement
"! the interface IF_ARCH_STORAGE_MANAGER.
Expand Down
2 changes: 1 addition & 1 deletion file-formats/aplo/type/zif_aff_aplo_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ INTERFACE zif_aff_aplo_v1
"! <p class="shorttext">Subobjects</p>
"! Table of all subobjects (may be empty)
"! $required
subobjects TYPE SORTED TABLE OF ty_subobject WITH NON-UNIQUE KEY name,
subobjects TYPE SORTED TABLE OF ty_subobject WITH NON-UNIQUE KEY name,
END OF ty_main.
ENDINTERFACE.
12 changes: 6 additions & 6 deletions file-formats/cdbo/type/zif_aff_cdbo_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ INTERFACE zif_aff_cdbo_v1
"! <p class="shorttext">Name</p>
"! Name
"! $required
name TYPE c LENGTH 30,
name TYPE c LENGTH 30,
"! <p class="shorttext">Nature</p>
"! Nature
"! $required
Expand All @@ -65,11 +65,11 @@ INTERFACE zif_aff_cdbo_v1
"! <p class="shorttext">Object Type</p>
"! Object type
"! $required
object_type TYPE ty_object_type,
object_type TYPE ty_object_type,
"! <p class="shorttext">Object Name</p>
"! Object name
"! $required
object_name TYPE c LENGTH 40,
object_name TYPE c LENGTH 40,
END OF ty_general_information.

TYPES:
Expand All @@ -79,19 +79,19 @@ INTERFACE zif_aff_cdbo_v1
"! <p class="shorttext">Format Version</p>
"! Format version
"! $required
format_version TYPE zif_aff_types_v1=>ty_format_version,
format_version TYPE zif_aff_types_v1=>ty_format_version,
"! <p class="shorttext">Header</p>
"! Header
"! $required
header TYPE zif_aff_types_v1=>ty_header_60,
header TYPE zif_aff_types_v1=>ty_header_60,
"! <p class="shorttext">General Information</p>
"! General information
"! $required
general_information TYPE ty_general_information,
"! <p class="shorttext">Fields</p>
"! Fields
"! $required
fields TYPE ty_fields,
fields TYPE ty_fields,
END OF ty_main.

ENDINTERFACE.
34 changes: 17 additions & 17 deletions file-formats/cfdf/type/zif_aff_cfdf_v2.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -306,24 +306,24 @@ INTERFACE zif_aff_cfdf_v2
"! Custom field
BEGIN OF ty_main,
"! $required
format_version TYPE zif_aff_types_v1=>ty_format_version,
format_version TYPE zif_aff_types_v1=>ty_format_version,

"! <p class="shorttext">Header</p>
"! Header
"! $required
header TYPE zif_aff_types_v1=>ty_header_60_no_abap_lv,
header TYPE zif_aff_types_v1=>ty_header_60_no_abap_lv,

"! <p class="shorttext">External Name</p>
"! External name
"! $required
external_name TYPE ty_field_name,
external_name TYPE ty_field_name,

"! <p class="shorttext">Type</p>
"! Type
"! $required
"! $values {@link zif_aff_cfdf_v2.data:co_type}
"! $default {@link zif_aff_cfdf_v2.data:co_type.text}
type TYPE ty_type,
type TYPE ty_type,

"! <p class="shorttext">Type Details</p>
"! Type details
Expand Down Expand Up @@ -363,55 +363,55 @@ INTERFACE zif_aff_cfdf_v2

"! <p class="shorttext">Data Protection and Privacy</p>
"! Data protection and privacy
data_protection_and_privacy TYPE ty_gs_dpp_properties,
data_protection_and_privacy TYPE ty_gs_dpp_properties,

"! <p class="shorttext">Reference to Characteristic</p>
"! Reference to characteristic
characteristic_reference TYPE ty_gs_characteristic_reference,
characteristic_reference TYPE ty_gs_characteristic_reference,

"! <p class="shorttext">Labels and Tooltips</p>
"! Labels and tooltips
ui_texts TYPE ty_gt_ui_text,
ui_texts TYPE ty_gt_ui_text,

"! <p class="shorttext">Code List Values</p>
"! Code list values
code_list_values TYPE ty_gt_code_list_value,
code_list_values TYPE ty_gt_code_list_value,

"! <p class="shorttext">Code List Descriptions</p>
"! Code list descriptions
code_list_descriptions TYPE ty_gt_code_list_value_descr,
code_list_descriptions TYPE ty_gt_code_list_value_descr,

"! <p class="shorttext">Extended Business Context Details</p>
"! Extended business context details
extended_business_contexts TYPE ty_gt_extended_bus_context,
extended_business_contexts TYPE ty_gt_extended_bus_context,

"! <p class="shorttext">Extended CDS View Details</p>
"! Extended CDS view details
extended_cds_views TYPE ty_gt_extended_cds_view,
extended_cds_views TYPE ty_gt_extended_cds_view,

"! <p class="shorttext">Extended OData Service Details</p>
"! Extended OData service details
extended_odata_services TYPE ty_gt_extended_odata_service,
extended_odata_services TYPE ty_gt_extended_odata_service,

"! <p class="shorttext">Extended Business Scenario Details</p>
"! Extended business scenario details
extended_business_scenarios TYPE ty_gt_extended_bus_scenario,
extended_business_scenarios TYPE ty_gt_extended_bus_scenario,

"! <p class="shorttext">Extended Dynpro Context Details</p>
"! Extended dynpro context details
extended_dynpro_contexts TYPE ty_gt_extended_dynpro_context,
extended_dynpro_contexts TYPE ty_gt_extended_dynpro_context,

"! <p class="shorttext">Extended SOAP Service Details</p>
"! Extended SOAP service details
extended_soap_services TYPE ty_gt_extended_soap_service,
extended_soap_services TYPE ty_gt_extended_soap_service,

"! <p class="shorttext">Value Help Key Mapping Details</p>
"! Value help key mapping details
value_help_key_mappings TYPE ty_gt_value_help_key_mapping,
value_help_key_mappings TYPE ty_gt_value_help_key_mapping,

"! <p class="shorttext">Value Help Binding Details</p>
"! Value help binding details
value_help_bindings TYPE ty_gt_value_help_binding,
value_help_bindings TYPE ty_gt_value_help_binding,
END OF ty_main.

CONSTANTS:
Expand Down
8 changes: 4 additions & 4 deletions file-formats/chko/type/zif_aff_chko_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ INTERFACE zif_aff_chko_v1
BEGIN OF ty_parameter,
"! <p class="shorttext">Parameter Name</p>
"! Name of a parameter
name TYPE string,
name TYPE string,
"! <p class="shorttext">Parameter Description</p>
"! Description of a parameter
description TYPE c LENGTH 255,
description TYPE c LENGTH 255,
"! <p class="shorttext">Is Hidden</p>
"! The parameter is hidden
hidden TYPE abap_bool,
hidden TYPE abap_bool,
END OF ty_parameter.

TYPES:
Expand Down Expand Up @@ -47,7 +47,7 @@ INTERFACE zif_aff_chko_v1
implementing_class TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext">Check Type</p>
"! The check type of ATC check
check_type TYPE ty_check_type,
check_type TYPE ty_check_type,
"! <p class="shorttext">Parameters</p>
"! Parameters of the ATC check object
parameters TYPE ty_parameters,
Expand Down
8 changes: 4 additions & 4 deletions file-formats/chkv/type/zif_aff_chkv_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,17 @@ INTERFACE zif_aff_chkv_v1
"! ATC check variant properties
BEGIN OF ty_main,
"! $required
format_version TYPE zif_aff_types_v1=>ty_format_version,
format_version TYPE zif_aff_types_v1=>ty_format_version,
"! <p class="shorttext">Header</p>
"! Header
"! $required
header TYPE zif_aff_types_v1=>ty_header_60_cloud,
header TYPE zif_aff_types_v1=>ty_header_60_cloud,
"! <p class="shorttext">Remote-Enabled</p>
"! The ATC check variant is remote-enabled
remote_enabled TYPE abap_bool,
remote_enabled TYPE abap_bool,
"! <p class="shorttext">Selected Checks</p>
"! The checks selected in the ATC check variant
selected_checks TYPE ty_checks,
selected_checks TYPE ty_checks,
END OF ty_main.

ENDINTERFACE.
4 changes: 2 additions & 2 deletions file-formats/dobj/type/zif_aff_dobj_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ INTERFACE zif_aff_dobj_v1
"! <p class="shorttext">Destruction Class</p>
"! Destruction class
"! $required
destruction_class TYPE zif_aff_types_v1=>ty_object_name_30,
destruction_class TYPE zif_aff_types_v1=>ty_object_name_30,
END OF ty_attributes.
TYPES:
"! <p class="shorttext">Data Destruction Object</p>
Expand All @@ -38,7 +38,7 @@ INTERFACE zif_aff_dobj_v1
"! <p class="shorttext">Attributes</p>
"!Attributes
"! $required
attributes TYPE ty_attributes,
attributes TYPE ty_attributes,
"! <p class="shorttext">Structure Definition</p>
"! Structure definition
"! $required
Expand Down
4 changes: 2 additions & 2 deletions file-formats/dsfi/type/zif_aff_dsfi_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ INTERFACE zif_aff_dsfi_v1
"! <p class="shorttext">General Information</p>
BEGIN OF ty_main,
"! $required
format_version TYPE zif_aff_types_v1=>ty_format_version,
format_version TYPE zif_aff_types_v1=>ty_format_version,
"! $required
header TYPE zif_aff_types_v1=>ty_header_60_src,
header TYPE zif_aff_types_v1=>ty_header_60_src,
"! <p class="shorttext">Scalar Function Name</p>
"! The name of the scalar function
"! $required
Expand Down
6 changes: 3 additions & 3 deletions file-formats/eeec/type/zif_aff_eeec_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ INTERFACE zif_aff_eeec_v1
"! <p class="shorttext synchronized" lang="en">Type</p>
"! Type
"! $required
type TYPE ty_type,
type TYPE ty_type,
"! <p class="shorttext synchronized" lang="en">Entity Name</p>
"! Entity name
"! $required
Expand All @@ -24,7 +24,7 @@ INTERFACE zif_aff_eeec_v1
"! <p class="shorttext">Event Consumption Model</p>
BEGIN OF ty_main,
"! $required
format_version TYPE zif_aff_types_v1=>ty_format_version,
format_version TYPE zif_aff_types_v1=>ty_format_version,
"! <p class="shorttext">Header</p>
"! Header
"! $required
Expand All @@ -38,7 +38,7 @@ INTERFACE zif_aff_eeec_v1
"! $required
descriptor_class TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext synchronized" lang="en">Event Types</p>
event_types TYPE ty_t_event_type,
event_types TYPE ty_t_event_type,
END OF ty_main.

ENDINTERFACE.
2 changes: 1 addition & 1 deletion file-formats/enho/type/zif_aff_enho_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ INTERFACE zif_aff_enho_v1
"! <p class="shorttext">BAdI Implementation Customizing</p>
"! Does the BAdI implementation support customizing
"! $showAlways
customizing TYPE ty_customizing,
customizing TYPE ty_customizing,
"! <p class="shorttext">Filter Values</p>
"! Filter values for this BAdI implementation
"! $callbackClass {@link cl_seef_aff_enho_filter_st}
Expand Down
24 changes: 12 additions & 12 deletions file-formats/enhs/type/zif_aff_enhs_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -155,45 +155,45 @@ INTERFACE zif_aff_enhs_v1
"! <p class="shorttext">Name of the BAdI Definition</p>
"! Name of the BAdI definition
"! $required
name TYPE zif_aff_types_v1=>ty_object_name_30,
name TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext">Description of the BAdI Definition</p>
"! Description of the BAdI definition
"! $required
description TYPE c LENGTH 255,
description TYPE c LENGTH 255,
"! <p class="shorttext">Interface of the BAdI Definition</p>
"! Interface of the BAdI definition
"! $required
interface TYPE zif_aff_types_v1=>ty_object_name_30,
interface TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext">Instantiation of the BAdI Definition</p>
"! Instantiation of the BAdI definition
"! $required
instantiation TYPE ty_instantiation,
instantiation TYPE ty_instantiation,
"! <p class="shorttext">Single- or Multiple Use BAdI</p>
"! Indicator whether the BAdI definition is single- or multiple usable
"! $showAlways
multiple_use TYPE abap_bool,
multiple_use TYPE abap_bool,
"! <p class="shorttext">SAP Internal</p>
"! SAP internal
sap_internal TYPE abap_bool,
sap_internal TYPE abap_bool,
"! <p class="shorttext">Example Classes of the BAdI Definition</p>
"! Example classes of the BAdI definition
example_classes TYPE ty_example_classes,
example_classes TYPE ty_example_classes,
"! <p class="shorttext">Name of the Default/Fallback Class</p>
"! Name of the default/fallback class.
"! The fallback class is executed if no BAdI implementation exists.
fallback_class TYPE zif_aff_types_v1=>ty_object_name_30,
fallback_class TYPE zif_aff_types_v1=>ty_object_name_30,
"! <p class="shorttext">Limited Filter Use</p>
"! Limited filter use
filter_limitation TYPE abap_bool,
filter_limitation TYPE abap_bool,
"! <p class="shorttext">Documentation Id</p>
"! Documentation Id
documentation_id TYPE c LENGTH 60,
documentation_id TYPE c LENGTH 60,
"! <p class="shorttext">Amdp BAdI</p>
"! BADI is an AMDP BAdI
amdp TYPE abap_bool,
amdp TYPE abap_bool,
"! <p class="shorttext">Filters of the BAdI Definition</p>
"! Filters of the BAdI definition
filters TYPE ty_badi_def_filters,
filters TYPE ty_badi_def_filters,
END OF ty_badi_def.

TYPES ty_badi_defs TYPE STANDARD TABLE OF ty_badi_def WITH DEFAULT KEY.
Expand Down
10 changes: 5 additions & 5 deletions file-formats/evtb/type/zif_aff_evtb_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ INTERFACE zif_aff_evtb_v1
BEGIN OF ty_event,
"! <p class="shorttext"> Major Version</p>
"! Major version
event_version TYPE n LENGTH 4,
event_version TYPE n LENGTH 4,

"! <p class="shorttext">Minor Version</p>
"! Minor version
"! $minimum 0
event_minor_version TYPE i,
event_minor_version TYPE i,

"! <p class="shorttext">Patch Version</p>
"! Patch version
"! $minimum 0
event_patch_version TYPE i,
event_patch_version TYPE i,

"! <p class="shorttext">Entity Name</p>
"! Entity name
"! $required
entity_name TYPE c LENGTH 30,
entity_name TYPE c LENGTH 30,

"! <p class="shorttext">Entity Event Name</p>
"! Entity event name
"! $required
entity_event_name TYPE c LENGTH 30,
entity_event_name TYPE c LENGTH 30,
END OF ty_event.

TYPES:
Expand Down
4 changes: 2 additions & 2 deletions file-formats/fugr/type/zif_aff_func_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ INTERFACE zif_aff_func_v1
"! Indicates the scope of function module calls. Modules whose call scope is not defined explicitly
"! can be called from anywhere
"! $required
rfc_scope TYPE ty_rfc_scope,
rfc_scope TYPE ty_rfc_scope,
"! <p class="shorttext">RFC Version</p>
"! Indicates which serializations are permitted for the function module.
"! Among other things, the selected serializations determine where the function module can be enhanced
"! $required
rfc_version TYPE ty_rfc_version,
rfc_version TYPE ty_rfc_version,
"! <p class="shorttext">ABAP From Java</p>
"! ABAP from Java
abap_from_java TYPE abap_bool,
Expand Down
Loading

0 comments on commit 30c13ef

Please sign in to comment.