Skip to content

Commit c043294

Browse files
authored
add method (#31)
1 parent db1d083 commit c043294

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/salv/cl_salv_column.clas.abap

+5
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ CLASS cl_salv_column DEFINITION PUBLIC.
77
METHODS set_output_length IMPORTING value TYPE any.
88
METHODS set_sign IMPORTING value TYPE any OPTIONAL.
99
METHODS set_optimized IMPORTING value TYPE abap_bool DEFAULT abap_true.
10+
METHODS set_alignment IMPORTING svalue TYPE any OPTIONAL.
1011
ENDCLASS.
1112

1213
CLASS cl_salv_column IMPLEMENTATION.
14+
METHOD set_alignment.
15+
ASSERT 1 = 'todo'.
16+
ENDMETHOD.
17+
1318
METHOD set_optimized.
1419
ASSERT 1 = 'todo'.
1520
ENDMETHOD.

0 commit comments

Comments
 (0)