Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more salv scaffolding #29

Merged
merged 1 commit into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.