File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ outline: [2, 4]
66### Basic Example
77Every abap2UI5 app is an implementation of the ` Z2UI5_IF_APP ` interface. Create a new class with the following code:
88``` abap
9- CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC CREATE PUBLIC .
9+ CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC.
1010
1111 PUBLIC SECTION.
1212 INTERFACES z2ui5_if_app.
@@ -26,7 +26,7 @@ Go back to the landing page in your browser and enter `Z2UI5_CL_APP_HELLO_WORLD`
2626### View Display
2727Now, let's add our first view to display a simple text:
2828``` abap
29- CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC CREATE PUBLIC .
29+ CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC.
3030
3131 PUBLIC SECTION.
3232 INTERFACES z2ui5_if_app.
@@ -48,7 +48,7 @@ ENDCLASS.
4848### Event Handler
4949Next, we extend the app with a button and an event:
5050``` abap
51- CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC CREATE PUBLIC .
51+ CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC.
5252
5353 PUBLIC SECTION.
5454 INTERFACES z2ui5_if_app.
@@ -78,7 +78,7 @@ ENDCLASS.
7878### Data Exchange
7979Finally, we add a public attribute and can send data to the backend:
8080``` abap
81- CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC CREATE PUBLIC .
81+ CLASS z2ui5_cl_app_hello_world DEFINITION PUBLIC.
8282
8383 PUBLIC SECTION.
8484 INTERFACES z2ui5_if_app.
You can’t perform that action at this time.
0 commit comments