Add "enableformattedtext" to message_strip method. (#1451)

* Add "enableformattedtext" to message_strip method.

* Add "enableformattedtext" to message_strip method2

* Add "enableformattedtext" to message_strip method3

* Add "enableformattedtext" to message_strip method4
This commit is contained in:
Francisco Milán 2024-09-25 00:48:48 -06:00 committed by GitHub
parent 3a4192d3e0
commit 3e5f73d555
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -187,15 +187,16 @@ CLASS z2ui5_cl_xml_view DEFINITION
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view. RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS message_strip METHODS message_strip
IMPORTING !text TYPE clike OPTIONAL IMPORTING !text TYPE clike OPTIONAL
!type TYPE clike OPTIONAL !type TYPE clike OPTIONAL
!showicon TYPE clike OPTIONAL !showicon TYPE clike OPTIONAL
!customicon TYPE clike OPTIONAL !customicon TYPE clike OPTIONAL
!class TYPE clike OPTIONAL !class TYPE clike OPTIONAL
!visible TYPE clike OPTIONAL !visible TYPE clike OPTIONAL
!showclosebutton TYPE clike OPTIONAL !showclosebutton TYPE clike OPTIONAL
enableformattedtext TYPE clike OPTIONAL
PREFERRED PARAMETER text PREFERRED PARAMETER text
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view. RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
METHODS footer METHODS footer
IMPORTING !ns TYPE string OPTIONAL IMPORTING !ns TYPE string OPTIONAL
@ -6880,7 +6881,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
( n = `customIcon` v = customicon ) ( n = `customIcon` v = customicon )
( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) ) ( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) )
( n = `showCloseButton` v = z2ui5_cl_util=>boolean_abap_2_json( showclosebutton ) ) ( n = `showCloseButton` v = z2ui5_cl_util=>boolean_abap_2_json( showclosebutton ) )
( n = `class` v = class ) ) ). ( n = `class` v = class )
( n = `enableFormattedText` v = z2ui5_cl_util=>boolean_abap_2_json( enableformattedtext ) ) ) ).
ENDMETHOD. ENDMETHOD.