abap2UI5/src/01/05/z2ui5_cl_cc_demo_out.clas.abap
oblomov 7d5c4a1ccc
renaming feature (#1104)
* Update abaplint_rename.jsonc

* update renaming

* Delete src/01/01/z2ui5_t_util_01.tabl.xml

* Delete src/01/02/01/z2ui5_t_core_01.tabl.xml

* Update abaplint_rename.jsonc

* Update abaplint_rename.jsonc

* update

* Delete src/01/02/01/z2ui5_cl_core_dissolve_srv.clas.xml

* Delete src/01/02/01/z2ui5_cl_core_dissolve_srv.clas.testclasses.abap

* update

* Delete src/01/05/z2ui5_cl_cc_demo_output.clas.abap

* Delete src/01/05/z2ui5_cl_cc_demo_output.clas.xml

* Delete src/01/05/z2ui5_cl_cc_camera_picture.clas.abap

* Delete src/01/05/z2ui5_cl_cc_camera_picture.clas.xml

* update

* Delete src/01/05/z2ui5_cl_cc_message_manager.clas.abap

* Delete src/01/05/z2ui5_cl_cc_message_manager.clas.xml

* update

* update

* fix
2024-04-24 09:02:38 +02:00

86 lines
4.1 KiB
ABAP

CLASS z2ui5_cl_cc_demo_out DEFINITION
PUBLIC
FINAL
CREATE PUBLIC .
PUBLIC SECTION.
CLASS-METHODS get_style
RETURNING
VALUE(result) TYPE string.
PROTECTED SECTION.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_cc_demo_out IMPLEMENTATION.
METHOD get_style.
result = `<html:style type="text/css">body {` && |\n| &&
` font-family: Arial;` && |\n| &&
` font-size: 90%;` && |\n| &&
`}` && |\n| &&
`table {` && |\n| &&
` font-family: Arial;` && |\n| &&
` font-size: 90%;` && |\n| &&
`}` && |\n| &&
`caption {` && |\n| &&
` font-family: Arial;` && |\n| &&
` font-size: 90%;` && |\n| &&
` font-weight:bold;` && |\n| &&
` text-align:left;` && |\n| &&
`}` && |\n| &&
`span.heading1 {` && |\n| &&
` font-size: 150%;` && |\n| &&
` color:#000080;` && |\n| &&
` font-weight:bold;` && |\n| &&
`}` && |\n| &&
`span.heading2 {` && |\n| &&
` font-size: 135%;` && |\n| &&
` color:#000080;` && |\n| &&
` font-weight:bold;` && |\n| &&
`}` && |\n| &&
`span.heading3 {` && |\n| &&
` font-size: 120%;` && |\n| &&
` color:#000080;` && |\n| &&
` font-weight:bold;` && |\n| &&
`}` && |\n| &&
`span.heading4 {` && |\n| &&
` font-size: 105%;` && |\n| &&
` color:#000080;` && |\n| &&
` font-weight:bold;` && |\n| &&
`}` && |\n| &&
`span.normal {` && |\n| &&
` font-size: 100%;` && |\n| &&
` color:#000000;` && |\n| &&
` font-weight:normal;` && |\n| &&
`}` && |\n| &&
`span.nonprop {` && |\n| &&
` font-family: Courier New;` && |\n| &&
` font-size: 100%;` && |\n| &&
` color:#000000;` && |\n| &&
` font-weight:400;` && |\n| &&
`}` && |\n| &&
`span.nowrap {` && |\n| &&
` white-space:nowrap;` && |\n| &&
`}` && |\n| &&
`span.nprpnwrp {` && |\n| &&
` font-family: Courier New;` && |\n| &&
` font-size: 100%;` && |\n| &&
` color:#000000;` && |\n| &&
` font-weight:400;` && |\n| &&
` white-space:nowrap;` && |\n| &&
`}` && |\n| &&
`tr.header {` && |\n| &&
` background-color:#D3D3D3;` && |\n| &&
`}` && |\n| &&
`tr.body {` && |\n| &&
` background-color:#EFEFEF;` && |\n| &&
`}` && |\n| &&
`</html:style>`.
ENDMETHOD.
ENDCLASS.