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 = `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| && ``. ENDMETHOD. ENDCLASS.