mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 02:58:20 +08:00

Some checks failed
build_downport / build_downport (push) Has been cancelled
build_frontend_classic / build_frontend_classic (push) Has been cancelled
build_frontend_cloud / build_frontend_cloud (push) Has been cancelled
js_transform / Code-Cleanup (push) Has been cancelled
ui5lint / test (push) Has been cancelled
ajson mirror / pr_ajson_changes (push) Has been cancelled
* new release * Update changelog.txt
19 lines
560 B
ABAP
19 lines
560 B
ABAP
INTERFACE z2ui5_if_app PUBLIC.
|
|
INTERFACES if_serializable_object.
|
|
|
|
CONSTANTS version TYPE string VALUE '1.138.0'.
|
|
CONSTANTS origin TYPE string VALUE 'https://github.com/abap2UI5/abap2UI5'.
|
|
CONSTANTS author TYPE string VALUE 'https://github.com/oblomov-dev'.
|
|
CONSTANTS license TYPE string VALUE 'MIT'.
|
|
|
|
DATA id_draft TYPE string.
|
|
DATA id_app TYPE string.
|
|
DATA check_initialized TYPE abap_bool.
|
|
DATA check_sticky TYPE abap_bool.
|
|
|
|
METHODS main
|
|
IMPORTING
|
|
!client TYPE REF TO z2ui5_if_client.
|
|
|
|
ENDINTERFACE.
|