abap2xlsx/src/zcl_excel_customui_button.clas.abap
Ivan Femia f8b0e354db Moving to abapGit
First commit to abapGit
2017-05-16 22:22:30 +02:00

23 lines
558 B
ABAP

class ZCL_EXCEL_CUSTOMUI_BUTTON definition
public
final
create public .
public section.
*"* public components of class ZCL_EXCEL_CUSTOMUI_BUTTON
*"* do not include other source files here!!!
interfaces ZIF_EXCEL_CUSTOMUI_ELEMENT .
protected section.
*"* protected components of class ZCL_EXCEL_CUSTOMUI_BUTTON
*"* do not include other source files here!!!
private section.
*"* private components of class ZCL_EXCEL_CUSTOMUI_BUTTON
*"* do not include other source files here!!!
ENDCLASS.
CLASS ZCL_EXCEL_CUSTOMUI_BUTTON IMPLEMENTATION.
ENDCLASS.