We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5194054 commit e0d91a7Copy full SHA for e0d91a7
src/tree/cl_gui_alv_tree.clas.abap
@@ -1,6 +1,14 @@
1
CLASS cl_gui_alv_tree DEFINITION INHERITING FROM cl_alv_tree_base PUBLIC.
2
PUBLIC SECTION.
3
4
+ METHODS constructor
5
+ IMPORTING
6
+ parent TYPE REF TO cl_gui_container OPTIONAL
7
+ node_selection_mode TYPE i DEFAULT cl_gui_column_tree=>node_sel_mode_single
8
+ item_selection TYPE abap_bool DEFAULT 'X'
9
+ no_toolbar TYPE abap_bool OPTIONAL
10
+ no_html_header TYPE abap_bool OPTIONAL.
11
+
12
METHODS free.
13
14
METHODS get_outtab_line
@@ -133,6 +141,10 @@ ENDCLASS.
133
141
134
142
CLASS cl_gui_alv_tree IMPLEMENTATION.
135
143
144
+ METHOD constructor.
145
+ ASSERT 1 = 'todo'.
146
+ ENDMETHOD.
147
136
148
METHOD set_top_node.
137
149
ASSERT 1 = 'todo'.
138
150
ENDMETHOD.
0 commit comments