Skip to content

Commit

Permalink
Add methods "breadcrumbs" and "current_location"
Browse files Browse the repository at this point in the history
  • Loading branch information
francisco-milan committed Sep 25, 2024
1 parent 614368e commit 8f5209b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/02/z2ui5_cl_xml_view.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,15 @@ CLASS z2ui5_cl_xml_view DEFINITION
IMPORTING !ns TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.

METHODS breadcrumbs
IMPORTING !ns TYPE clike OPTIONAL
link TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.

METHODS current_location
IMPORTING !ns TYPE clike OPTIONAL
link TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.

METHODS auto
IMPORTING !ns TYPE clike OPTIONAL
Expand Down Expand Up @@ -10099,4 +10108,20 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
name = `rowMode`
ns = ns ).
ENDMETHOD.


METHOD breadcrumbs.
result = _generic(
ns = ns
name = `Breadcrumbs`
t_prop = VALUE #( ( n = `link` v = link ) ) ).
ENDMETHOD.


METHOD current_location.
result = _generic(
ns = ns
name = `currentLocation`
t_prop = VALUE #( ( n = `link` v = link ) ) ).
ENDMETHOD.
ENDCLASS.

0 comments on commit 8f5209b

Please sign in to comment.