Commit e0bfb8b 1 parent 7887a55 commit e0bfb8b Copy full SHA for e0bfb8b
File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,19 @@ CLASS cl_gui_picture DEFINITION INHERITING FROM cl_gui_control PUBLIC.
8
8
9
9
METHODS clear_picture.
10
10
11
+ METHODS free .
12
+
11
13
METHODS set_display_mode
12
14
IMPORTING
13
15
display_mode TYPE i .
14
16
ENDCLASS .
15
17
16
18
CLASS cl_gui_picture IMPLEMENTATION .
17
19
20
+ METHOD free .
21
+ RETURN . " todo, implement method
22
+ ENDMETHOD .
23
+
18
24
METHOD clear_picture .
19
25
RETURN . " todo, implement method
20
26
ENDMETHOD .
Original file line number Diff line number Diff line change 1
1
CLASS cl_gui_textedit DEFINITION INHERITING FROM cl_gui_control PUBLIC .
2
2
PUBLIC SECTION .
3
3
CONSTANTS false TYPE i VALUE 0 .
4
+ CONSTANTS true TYPE i VALUE 1 .
4
5
5
6
METHODS constructor
6
7
IMPORTING
@@ -22,10 +23,18 @@ CLASS cl_gui_textedit DEFINITION INHERITING FROM cl_gui_control PUBLIC.
22
23
text TYPE string
23
24
is_modified TYPE i .
24
25
26
+ METHODS set_readonly_mode
27
+ IMPORTING
28
+ readonly_mode TYPE i DEFAULT true.
29
+
25
30
ENDCLASS .
26
31
27
32
CLASS cl_gui_textedit IMPLEMENTATION .
28
33
34
+ METHOD set_readonly_mode .
35
+ RETURN . " todo, implement method
36
+ ENDMETHOD .
37
+
29
38
METHOD constructor .
30
39
ASSERT 1 = 2 .
31
40
ENDMETHOD .
You can’t perform that action at this time.
0 commit comments