Skip to content

Commit e0bfb8b

Browse files
committed
update
1 parent 7887a55 commit e0bfb8b

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

src/cl_gui_picture.clas.abap

+6
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@ CLASS cl_gui_picture DEFINITION INHERITING FROM cl_gui_control PUBLIC.
88

99
METHODS clear_picture.
1010

11+
METHODS free.
12+
1113
METHODS set_display_mode
1214
IMPORTING
1315
display_mode TYPE i.
1416
ENDCLASS.
1517

1618
CLASS cl_gui_picture IMPLEMENTATION.
1719

20+
METHOD free.
21+
RETURN. " todo, implement method
22+
ENDMETHOD.
23+
1824
METHOD clear_picture.
1925
RETURN. " todo, implement method
2026
ENDMETHOD.

src/cl_gui_textedit.clas.abap

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
CLASS cl_gui_textedit DEFINITION INHERITING FROM cl_gui_control PUBLIC.
22
PUBLIC SECTION.
33
CONSTANTS false TYPE i VALUE 0.
4+
CONSTANTS true TYPE i VALUE 1.
45

56
METHODS constructor
67
IMPORTING
@@ -22,10 +23,18 @@ CLASS cl_gui_textedit DEFINITION INHERITING FROM cl_gui_control PUBLIC.
2223
text TYPE string
2324
is_modified TYPE i.
2425

26+
METHODS set_readonly_mode
27+
IMPORTING
28+
readonly_mode TYPE i DEFAULT true.
29+
2530
ENDCLASS.
2631

2732
CLASS cl_gui_textedit IMPLEMENTATION.
2833

34+
METHOD set_readonly_mode.
35+
RETURN. " todo, implement method
36+
ENDMETHOD.
37+
2938
METHOD constructor.
3039
ASSERT 1 = 2.
3140
ENDMETHOD.

0 commit comments

Comments
 (0)