Skip to content

Commit 629d135

Browse files
committed
more salv scaffolding
1 parent f49c39f commit 629d135

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@abaplint/cli": "^2.108.2",
14+
"@abaplint/cli": "^2.108.4",
1515
"@abaplint/runtime": "^2.8.24",
1616
"@abaplint/database-sqlite": "^2.8.0",
1717
"@abaplint/transpiler-cli": "^2.8.24"
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
CLASS cl_salv_column_list DEFINITION PUBLIC INHERITING FROM cl_salv_column.
2+
PUBLIC SECTION.
3+
METHODS set_icon
4+
IMPORTING
5+
value TYPE abap_bool DEFAULT abap_true.
6+
7+
METHODS set_cell_type
8+
IMPORTING
9+
value TYPE any OPTIONAL.
10+
ENDCLASS.
11+
12+
CLASS cl_salv_column_list IMPLEMENTATION.
13+
METHOD set_cell_type.
14+
RETURN. " todo, implement method
15+
ENDMETHOD.
16+
17+
METHOD set_icon.
18+
RETURN. " todo, implement method
19+
ENDMETHOD.
20+
ENDCLASS.
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CLASS cl_salv_column_table DEFINITION PUBLIC INHERITING FROM cl_salv_column_list.
2+
PUBLIC SECTION.
3+
4+
ENDCLASS.
5+
6+
CLASS cl_salv_column_table IMPLEMENTATION.
7+
ENDCLASS.

0 commit comments

Comments
 (0)