mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-06 04:43:43 +08:00

* 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>
13 lines
417 B
ABAP
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.
|