Skip to content

Commit e7e1358

Browse files
committed
Regenerated
1 parent 17e2bb3 commit e7e1358

File tree

3 files changed

+72
-15
lines changed

3 files changed

+72
-15
lines changed

doc/api/_static/javadoc/index-all.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,29 @@
5858
<!-- -->
5959
</a></div>
6060
<!-- ========= END OF TOP NAVBAR ========= -->
61-
<div class="contentContainer"><a href="#_C_">C</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_R_">R</a>&nbsp;<a name="_C_">
61+
<div class="contentContainer"><a href="#_C_">C</a>&nbsp;<a href="#_I_">I</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_R_">R</a>&nbsp;<a name="_C_">
6262
<!-- -->
6363
</a>
6464
<h2 class="title">C</h2>
6565
<dl>
66+
<dt><span class="strong"><a href="./org/robotframework/RunnerFactory.html#cleanup()">cleanup()</a></span> - Method in class org.robotframework.<a href="./org/robotframework/RunnerFactory.html" title="class in org.robotframework">RunnerFactory</a></dt>
67+
<dd>
68+
<div class="block">Cleans up the interpreter used for creating runners.</div>
69+
</dd>
6670
<dt><span class="strong"><a href="./org/robotframework/RunnerFactory.html#createRunner()">createRunner()</a></span> - Method in class org.robotframework.<a href="./org/robotframework/RunnerFactory.html" title="class in org.robotframework">RunnerFactory</a></dt>
6771
<dd>
6872
<div class="block">Creates and returns an instance of the robot.JarRunner (implemented in
6973
Python), which can be used to execute tests.</div>
7074
</dd>
7175
</dl>
76+
<a name="_I_">
77+
<!-- -->
78+
</a>
79+
<h2 class="title">I</h2>
80+
<dl>
81+
<dt><span class="strong"><a href="./org/robotframework/RunnerFactory.html#interpreter">interpreter</a></span> - Variable in class org.robotframework.<a href="./org/robotframework/RunnerFactory.html" title="class in org.robotframework">RunnerFactory</a></dt>
82+
<dd>&nbsp;</dd>
83+
</dl>
7284
<a name="_M_">
7385
<!-- -->
7486
</a>
@@ -117,7 +129,7 @@ <h2 class="title">R</h2>
117129
<dt><span class="strong"><a href="./org/robotframework/RunnerFactory.html#RunnerFactory()">RunnerFactory()</a></span> - Constructor for class org.robotframework.<a href="./org/robotframework/RunnerFactory.html" title="class in org.robotframework">RunnerFactory</a></dt>
118130
<dd>&nbsp;</dd>
119131
</dl>
120-
<a href="#_C_">C</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_R_">R</a>&nbsp;</div>
132+
<a href="#_C_">C</a>&nbsp;<a href="#_I_">I</a>&nbsp;<a href="#_M_">M</a>&nbsp;<a href="#_O_">O</a>&nbsp;<a href="#_R_">R</a>&nbsp;</div>
121133
<!-- ======= START OF BOTTOM NAVBAR ====== -->
122134
<div class="bottomNav"><a name="navbar_bottom">
123135
<!-- -->

doc/api/_static/javadoc/index.html

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010
if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPage)))
1111
targetPage = "undefined";
1212
function validURL(url) {
13-
try {
14-
url = decodeURIComponent(url);
15-
}
16-
catch (error) {
17-
return false;
18-
}
1913
var pos = url.indexOf(".html");
2014
if (pos == -1 || pos != url.length - 5)
2115
return false;
@@ -27,8 +21,7 @@
2721
if ('a' <= ch && ch <= 'z' ||
2822
'A' <= ch && ch <= 'Z' ||
2923
ch == '$' ||
30-
ch == '_' ||
31-
ch.charCodeAt(0) > 127) {
24+
ch == '_') {
3225
allowNumber = true;
3326
allowSep = true;
3427
} else if ('0' <= ch && ch <= '9'

doc/api/_static/javadoc/org/robotframework/RunnerFactory.html

Lines changed: 57 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
<ul class="subNavList">
5959
<li>Summary:&nbsp;</li>
6060
<li>Nested&nbsp;|&nbsp;</li>
61-
<li>Field&nbsp;|&nbsp;</li>
61+
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
6262
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
6363
<li><a href="#method_summary">Method</a></li>
6464
</ul>
6565
<ul class="subNavList">
6666
<li>Detail:&nbsp;</li>
67-
<li>Field&nbsp;|&nbsp;</li>
67+
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
6868
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
6969
<li><a href="#method_detail">Method</a></li>
7070
</ul>
@@ -102,6 +102,25 @@ <h2 title="Class RunnerFactory" class="title">Class RunnerFactory</h2>
102102
<div class="summary">
103103
<ul class="blockList">
104104
<li class="blockList">
105+
<!-- =========== FIELD SUMMARY =========== -->
106+
<ul class="blockList">
107+
<li class="blockList"><a name="field_summary">
108+
<!-- -->
109+
</a>
110+
<h3>Field Summary</h3>
111+
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
112+
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
113+
<tr>
114+
<th class="colFirst" scope="col">Modifier and Type</th>
115+
<th class="colLast" scope="col">Field and Description</th>
116+
</tr>
117+
<tr class="altColor">
118+
<td class="colFirst"><code>PythonInterpreter</code></td>
119+
<td class="colLast"><code><strong><a href="../../org/robotframework/RunnerFactory.html#interpreter">interpreter</a></strong></code>&nbsp;</td>
120+
</tr>
121+
</table>
122+
</li>
123+
</ul>
105124
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
106125
<ul class="blockList">
107126
<li class="blockList"><a name="constructor_summary">
@@ -132,6 +151,12 @@ <h3>Method Summary</h3>
132151
<th class="colLast" scope="col">Method and Description</th>
133152
</tr>
134153
<tr class="altColor">
154+
<td class="colFirst"><code>void</code></td>
155+
<td class="colLast"><code><strong><a href="../../org/robotframework/RunnerFactory.html#cleanup()">cleanup</a></strong>()</code>
156+
<div class="block">Cleans up the interpreter used for creating runners.</div>
157+
</td>
158+
</tr>
159+
<tr class="rowColor">
135160
<td class="colFirst"><code><a href="../../org/robotframework/RobotRunner.html" title="interface in org.robotframework">RobotRunner</a></code></td>
136161
<td class="colLast"><code><strong><a href="../../org/robotframework/RunnerFactory.html#createRunner()">createRunner</a></strong>()</code>
137162
<div class="block">Creates and returns an instance of the robot.JarRunner (implemented in
@@ -154,6 +179,23 @@ <h3>Methods inherited from class&nbsp;java.lang.Object</h3>
154179
<div class="details">
155180
<ul class="blockList">
156181
<li class="blockList">
182+
<!-- ============ FIELD DETAIL =========== -->
183+
<ul class="blockList">
184+
<li class="blockList"><a name="field_detail">
185+
<!-- -->
186+
</a>
187+
<h3>Field Detail</h3>
188+
<a name="interpreter">
189+
<!-- -->
190+
</a>
191+
<ul class="blockListLast">
192+
<li class="blockList">
193+
<h4>interpreter</h4>
194+
<pre>public&nbsp;PythonInterpreter interpreter</pre>
195+
</li>
196+
</ul>
197+
</li>
198+
</ul>
157199
<!-- ========= CONSTRUCTOR DETAIL ======== -->
158200
<ul class="blockList">
159201
<li class="blockList"><a name="constructor_detail">
@@ -180,14 +222,24 @@ <h3>Method Detail</h3>
180222
<a name="createRunner()">
181223
<!-- -->
182224
</a>
183-
<ul class="blockListLast">
225+
<ul class="blockList">
184226
<li class="blockList">
185227
<h4>createRunner</h4>
186228
<pre>public&nbsp;<a href="../../org/robotframework/RobotRunner.html" title="interface in org.robotframework">RobotRunner</a>&nbsp;createRunner()</pre>
187229
<div class="block">Creates and returns an instance of the robot.JarRunner (implemented in
188230
Python), which can be used to execute tests.</div>
189231
</li>
190232
</ul>
233+
<a name="cleanup()">
234+
<!-- -->
235+
</a>
236+
<ul class="blockListLast">
237+
<li class="blockList">
238+
<h4>cleanup</h4>
239+
<pre>public&nbsp;void&nbsp;cleanup()</pre>
240+
<div class="block">Cleans up the interpreter used for creating runners.</div>
241+
</li>
242+
</ul>
191243
</li>
192244
</ul>
193245
</li>
@@ -238,13 +290,13 @@ <h4>createRunner</h4>
238290
<ul class="subNavList">
239291
<li>Summary:&nbsp;</li>
240292
<li>Nested&nbsp;|&nbsp;</li>
241-
<li>Field&nbsp;|&nbsp;</li>
293+
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
242294
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
243295
<li><a href="#method_summary">Method</a></li>
244296
</ul>
245297
<ul class="subNavList">
246298
<li>Detail:&nbsp;</li>
247-
<li>Field&nbsp;|&nbsp;</li>
299+
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
248300
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
249301
<li><a href="#method_detail">Method</a></li>
250302
</ul>

0 commit comments

Comments
 (0)