Code: Alles auswählen.
CLASS zcl_class DEFINITION PUBLIC CREATE PUBLIC .
PUBLIC SECTION.
method construtor.
method as_string.
ENDCLASS.
CLASS zcl_class IMPLEMENTATION.
method constructor.
endmethod.
method as_string.
endmethod.
ENDCLASS.
Code: Alles auswählen.
CLASS zcl_class DEFINITION PUBLIC CREATE PUBLIC .
PUBLIC SECTION.
method construtor.
method as_string.
ENDCLASS.
CLASS zcl_class IMPLEMENTATION.
method as_string.
endmethod.
method constructor.
endmethod.
ENDCLASS.