File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 11
11
},
12
12
"license" : " MIT" ,
13
13
"dependencies" : {
14
- "@abaplint/cli" : " ^2.113.110 " ,
15
- "@abaplint/runtime" : " ^2.10.49 " ,
14
+ "@abaplint/cli" : " ^2.113.134 " ,
15
+ "@abaplint/runtime" : " ^2.10.61 " ,
16
16
"@abaplint/database-sqlite" : " ^2.10.24" ,
17
- "@abaplint/transpiler-cli" : " ^2.10.49 "
17
+ "@abaplint/transpiler-cli" : " ^2.10.61 "
18
18
}
19
19
}
Original file line number Diff line number Diff line change 1
1
CLASS cl_gui_alv_tree DEFINITION INHERITING FROM cl_alv_tree_base PUBLIC .
2
2
PUBLIC SECTION .
3
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
+
4
12
METHODS free .
5
13
6
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 .
You can’t perform that action at this time.
0 commit comments