abap2xlsx/src/zcl_excel_reader_2007.clas.locals_def.abap
sandraros 9ee01464fc
keyword_case upper (#942)
* keyword to upper case (using class builder)

(methods in zcl_excel_style_changer were automatically reordered)

* keyword upper case of local implementations

* Update src/zcl_excel_style_changer.clas.abap

Co-authored-by: sandraros <sandra.rossi@gmail.com>
Co-authored-by: Abo <andrea@borgia.bo.it>
2022-01-02 08:23:57 +01:00

13 lines
417 B
ABAP

*"* use this source file for any type declarations (class
*"* definitions, interfaces or data types) you need for method
*"* implementation or private method's signature
*
CLASS lcl_zip_archive DEFINITION ABSTRACT.
PUBLIC SECTION.
METHODS read ABSTRACT
IMPORTING i_filename TYPE csequence
RETURNING VALUE(r_content) TYPE xstring " Remember copy-on-write!
RAISING zcx_excel.
ENDCLASS.