Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 290ca30

Browse files
replace hard-coded id attribute with name and value for an optional attribute
1 parent 93e4ea8 commit 290ca30

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

source/reporters/ut_realtime_reporter.tps

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,13 @@ create or replace type ut_realtime_reporter force under ut_output_reporter_base(
103103
overriding member function get_description return varchar2,
104104

105105
/**
106-
* Prints the start tag of a XML node with an optional id attribute.
106+
* Prints the start tag of a XML node with an optional attribute.
107107
*/
108108
member procedure print_start_node(
109-
self in out nocopy ut_realtime_reporter,
110-
a_name in varchar2,
111-
a_id in varchar2 default null
109+
self in out nocopy ut_realtime_reporter,
110+
a_node_name in varchar2,
111+
a_attr_name in varchar2 default null,
112+
a_attr_value in varchar2 default null
112113
),
113114

114115
/**

0 commit comments

Comments
 (0)