@@ -33,23 +33,22 @@ create or replace type ut_realtime_reporter force under ut_output_reporter_base(
3333
3434 /**
3535 * The realtime reporter.
36- * Provides test results in a XML format, for clients such as SQL Developer interested progressing details.
36+ * Provides test results in a XML format, for clients such as SQL Developer interested in showing progressing details.
3737 */
3838 constructor function ut_realtime_reporter(
3939 self in out nocopy ut_realtime_reporter
4040 ) return self as result,
4141
4242 /**
4343 * Provides meta data of complete run in advance.
44- * Used to show total tests and initialize a progress bar.
4544 */
4645 overriding member procedure before_calling_run(
4746 self in out nocopy ut_realtime_reporter,
4847 a_run in ut_run
4948 ),
5049
5150 /**
52- * Provides closing tag with runtime summary .
51+ * Provides closing tags .
5352 */
5453 overriding member procedure after_calling_run(
5554 self in out nocopy ut_realtime_reporter,
@@ -65,7 +64,7 @@ create or replace type ut_realtime_reporter force under ut_output_reporter_base(
6564 ),
6665
6766 /**
68- * Provides meta data of completed test suite with runtime .
67+ * Provides meta data of completed test suite.
6968 */
7069 overriding member procedure after_calling_suite(
7170 self in out nocopy ut_realtime_reporter,
@@ -82,7 +81,7 @@ create or replace type ut_realtime_reporter force under ut_output_reporter_base(
8281 ),
8382
8483 /**
85- * Provides meta data of a completed test with runtime and status .
84+ * Provides meta data of a completed test.
8685 */
8786 overriding member procedure after_calling_test(
8887 self in out nocopy ut_realtime_reporter,
@@ -95,7 +94,7 @@ create or replace type ut_realtime_reporter force under ut_output_reporter_base(
9594 overriding member function get_description return varchar2,
9695
9796 /**
98- * Prints the start tag of an XML with an optional id attribute.
97+ * Prints the start tag of a XML node with an optional id attribute.
9998 */
10099 member procedure print_start_node(
101100 self in out nocopy ut_realtime_reporter,
@@ -104,15 +103,15 @@ create or replace type ut_realtime_reporter force under ut_output_reporter_base(
104103 ),
105104
106105 /**
107- * Prints the end tag of an XML node.
106+ * Prints the end tag of a XML node.
108107 */
109108 member procedure print_end_node(
110109 self in out nocopy ut_realtime_reporter,
111110 a_name in varchar2
112111 ),
113112
114113 /**
115- * Prints a child node with content. Content will be XML encoded.
114+ * Prints a child node with content. Special characters are encoded.
116115 */
117116 member procedure print_node(
118117 self in out nocopy ut_realtime_reporter,
@@ -121,7 +120,7 @@ create or replace type ut_realtime_reporter force under ut_output_reporter_base(
121120 ),
122121
123122 /**
124- * Prints a child node with content. Content is passed 1:1 incl. new lines, etc. using CDATA.
123+ * Prints a child node with content. Content is passed 1:1 using CDATA.
125124 */
126125 member procedure print_cdata_node(
127126 self in out nocopy ut_realtime_reporter,
0 commit comments