Skip to content

Commit

Permalink
more salv scaffolding (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp authored May 12, 2024
1 parent f49c39f commit 135d993
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.108.2",
"@abaplint/cli": "^2.108.4",
"@abaplint/runtime": "^2.8.24",
"@abaplint/database-sqlite": "^2.8.0",
"@abaplint/transpiler-cli": "^2.8.24"
Expand Down
20 changes: 20 additions & 0 deletions src/salv/cl_salv_column_list.clas.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
CLASS cl_salv_column_list DEFINITION PUBLIC INHERITING FROM cl_salv_column.
PUBLIC SECTION.
METHODS set_icon
IMPORTING
value TYPE abap_bool DEFAULT abap_true.

METHODS set_cell_type
IMPORTING
value TYPE any OPTIONAL.
ENDCLASS.

CLASS cl_salv_column_list IMPLEMENTATION.
METHOD set_cell_type.
RETURN. " todo, implement method
ENDMETHOD.

METHOD set_icon.
RETURN. " todo, implement method
ENDMETHOD.
ENDCLASS.
7 changes: 7 additions & 0 deletions src/salv/cl_salv_column_table.clas.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CLASS cl_salv_column_table DEFINITION PUBLIC INHERITING FROM cl_salv_column_list.
PUBLIC SECTION.

ENDCLASS.

CLASS cl_salv_column_table IMPLEMENTATION.
ENDCLASS.

0 comments on commit 135d993

Please sign in to comment.