Skip to content

Commit a189438

Browse files
committed
add method
1 parent 01068a2 commit a189438

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/cl_gui_control.clas.abap

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ CLASS cl_gui_control DEFINITION PUBLIC.
66
CLASS-METHODS set_focus
77
IMPORTING
88
control TYPE REF TO cl_gui_control.
9+
10+
METHODS set_enable
11+
IMPORTING
12+
enable TYPE c.
13+
914
ENDCLASS.
1015

1116
CLASS cl_gui_control IMPLEMENTATION.
@@ -14,4 +19,8 @@ CLASS cl_gui_control IMPLEMENTATION.
1419
ASSERT 1 = 'todo'.
1520
ENDMETHOD.
1621

22+
METHOD set_enable.
23+
ASSERT 1 = 'todo'.
24+
ENDMETHOD.
25+
1726
ENDCLASS.

0 commit comments

Comments
 (0)