Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e239570

Browse files
committedApr 1, 2024·
add method
1 parent b925d7d commit e239570

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎src/cl_gui_textedit.clas.abap

+8
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,18 @@ CLASS cl_gui_textedit DEFINITION INHERITING FROM cl_gui_control PUBLIC.
2929

3030
METHODS delete_text.
3131

32+
METHODS set_text_as_stream
33+
IMPORTING
34+
text TYPE STANDARD TABLE OPTIONAL.
35+
3236
ENDCLASS.
3337

3438
CLASS cl_gui_textedit IMPLEMENTATION.
3539

40+
METHOD set_text_as_stream.
41+
RETURN. " todo, implement method
42+
ENDMETHOD.
43+
3644
METHOD delete_text.
3745
RETURN. " todo, implement method
3846
ENDMETHOD.

0 commit comments

Comments
 (0)
Please sign in to comment.