Skip to content

Commit

Permalink
splitter method
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Mar 27, 2024
1 parent 339c680 commit 860ebd0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/cl_gui_splitter_container.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ CLASS cl_gui_splitter_container DEFINITION PUBLIC.

METHODS free.

METHODS set_column_mode
IMPORTING
mode TYPE i
EXPORTING
result TYPE i.

METHODS set_column_width
IMPORTING
id TYPE i
Expand Down Expand Up @@ -40,6 +46,10 @@ CLASS cl_gui_splitter_container IMPLEMENTATION.
ASSERT 1 = 'todo'.
ENDMETHOD.

METHOD set_column_mode.
ASSERT 1 = 'todo'.
ENDMETHOD.

METHOD free.
ASSERT 1 = 'todo'.
ENDMETHOD.
Expand Down

0 comments on commit 860ebd0

Please sign in to comment.