Skip to content

Commit

Permalink
add constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Mar 18, 2024
1 parent 26b6a0a commit 73158b8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
31 changes: 20 additions & 11 deletions src/cl_gui_alv_grid.clas.abap
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
CLASS cl_gui_alv_grid DEFINITION PUBLIC.
PUBLIC SECTION.

METHODS constructor
IMPORTING
i_parent TYPE REF TO cl_gui_container.

METHODS free.

METHODS set_table_for_first_display
IMPORTING
i_buffer_active TYPE any OPTIONAL
i_bypassing_buffer TYPE abap_bool OPTIONAL
i_consistency_check TYPE abap_bool OPTIONAL
i_structure_name TYPE any OPTIONAL
is_variant TYPE any OPTIONAL
i_save TYPE abap_bool OPTIONAL
i_default TYPE abap_bool DEFAULT 'X'
is_layout TYPE any OPTIONAL
is_print TYPE any OPTIONAL
it_special_groups TYPE any OPTIONAL
i_buffer_active TYPE any OPTIONAL
i_bypassing_buffer TYPE abap_bool OPTIONAL
i_consistency_check TYPE abap_bool OPTIONAL
i_structure_name TYPE any OPTIONAL
is_variant TYPE any OPTIONAL
i_save TYPE abap_bool OPTIONAL
i_default TYPE abap_bool DEFAULT abap_true
is_layout TYPE any OPTIONAL
is_print TYPE any OPTIONAL
it_special_groups TYPE any OPTIONAL
it_toolbar_excluding TYPE any OPTIONAL
it_hyperlink TYPE any OPTIONAL
it_hyperlink TYPE any OPTIONAL
it_alv_graphics TYPE any OPTIONAL
it_except_qinfo TYPE any OPTIONAL
ir_salv_adapter TYPE REF TO any OPTIONAL
Expand Down Expand Up @@ -64,6 +69,10 @@ ENDCLASS.

CLASS cl_gui_alv_grid IMPLEMENTATION.

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

METHOD set_ready_for_input.
ASSERT 1 = 'todo'.
ENDMETHOD.
Expand Down
7 changes: 7 additions & 0 deletions src/cl_gui_custom_container.clas.abap
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
CLASS cl_gui_custom_container DEFINITION PUBLIC INHERITING FROM cl_gui_container.
PUBLIC SECTION.
METHODS constructor
IMPORTING
container_name TYPE c.
ENDCLASS.

CLASS cl_gui_custom_container IMPLEMENTATION.

METHOD constructor.
ASSERT 1 = 2.
ENDMETHOD.

ENDCLASS.

0 comments on commit 73158b8

Please sign in to comment.