You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2015/09/09 15:11:17 UTC

svn commit: r1701998 - /jmeter/trunk/xdocs/usermanual/component_reference.xml

Author: pmouawad
Date: Wed Sep  9 13:11:16 2015
New Revision: 1701998

URL: http://svn.apache.org/r1701998
Log:
Reference javadocs

Modified:
    jmeter/trunk/xdocs/usermanual/component_reference.xml

Modified: jmeter/trunk/xdocs/usermanual/component_reference.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/component_reference.xml?rev=1701998&r1=1701997&r2=1701998&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/component_reference.xml (original)
+++ jmeter/trunk/xdocs/usermanual/component_reference.xml Wed Sep  9 13:11:16 2015
@@ -1165,7 +1165,7 @@ BeanShell does not currently support Jav
             is stored in the String array <code>bsh.args</code>.</p>
         <p>The full list of BeanShell variables that is set up is as follows:</p>
         <ul>
-        <li><code>log</code> - the Logger</li>
+        <li><code>log</code> - the <a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a></li>
         <li><code>Label</code> - the Sampler label</li>
         <li><code>FileName</code> - the file name, if any</li>
         <li><code>Parameters</code> - text from the Parameters field</li>
@@ -1272,7 +1272,7 @@ Before invoking the script, some variabl
 Note that these are BSF variables - i.e. they can be used directly in the script.
 </p>
 <ul>
-<li><code>log</code> - the Logger</li>
+<li><code>log</code> - the <a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a></li>
 <li><code>Label</code> - the Sampler label</li>
 <li><code>FileName</code> - the file name, if any</li>
 <li><code>Parameters</code> - text from the Parameters field</li>
@@ -1366,7 +1366,7 @@ Before invoking the script, some variabl
 Note that these are JSR223 variables - i.e. they can be used directly in the script.
 </p>
 <ul>
-<li><code>log</code> - the Logger</li>
+<li><code>log</code> - the <a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a></li>
 <li><code>Label</code> - the Sampler label</li>
 <li><code>FileName</code> - the file name, if any</li>
 <li><code>Parameters</code> - text from the Parameters field</li>
@@ -3305,7 +3305,7 @@ See the file <code>BeanShellListeners.bs
 </properties>
 <p>Before invoking the script, some variables are set up in the BeanShell interpreter:</p>
 <ul>
-<li><code>log</code> - (Logger) - can be used to write to the log file</li>
+<li><code>log</code> - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li><code>ctx</code> - (<a href="../api/org/apache/jmeter/threads/JMeterContext.html">JMeterContext</a>) - gives access to the context</li>
 <li><code>vars</code> - (<a href="../api/org/apache/jmeter/threads/JMeterVariables.html">JMeterVariables</a>) - gives read/write access to variables: <source>vars.get(key);
 vars.put(key,val);
@@ -3431,7 +3431,7 @@ Before invoking the script, some variabl
 Note that these are BSF variables - i.e. they can be used directly in the script.
 </p>
 <dl>
-<dt><code>log</code></dt><dd>(Logger) - can be used to write to the log file</dd>
+<dt><code>log</code></dt><dd>(<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</dd>
 <dt><code>Label</code></dt><dd>the String Label</dd>
 <dt><code>FileName</code></dt><dd>the script file name (if any)</dd>
 <dt><code>Parameters</code></dt><dd>the parameters (as a String)</dd>
@@ -3474,7 +3474,7 @@ Before invoking the script, some variabl
 Note that these are JSR223 variables - i.e. they can be used directly in the script.
 </p>
 <dl>
-<dt><code>log</code></dt><dd>(Logger) - can be used to write to the log file</dd>
+<dt><code>log</code></dt><dd>(<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</dd>
 <dt><code>Label</code></dt><dd>the String Label</dd>
 <dt><code>FileName</code></dt><dd>the script file name (if any)</dd>
 <dt><code>Parameters</code></dt><dd>the parameters (as a String)</dd>
@@ -4692,7 +4692,7 @@ Before invoking the script, some variabl
 These are strings unless otherwise noted:
 </p>
 <ul>
-  <li><code>log</code> - the Logger Object. (e.g.) <code>log.warn("Message"[,Throwable])</code></li>
+  <li><code>log</code> - the <a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a> Object. (e.g.) <code>log.warn("Message"[,Throwable])</code></li>
   <li><code>SampleResult</code> - the <a href="../api/org/apache/jmeter/samplers/SampleResult.html">SampleResult</a> Object; read-write</li>
   <li><code>Response</code> - the response Object; read-write</li>
   <li><code>Failure</code> - boolean; read-write; used to set the Assertion status</li>
@@ -4823,7 +4823,7 @@ The script (or file) is processed using
 </p>
 <p>The following variables are set up for use by the script:</p>
 <ul>
-<li><code>log</code> - (Logger) - can be used to write to the log file</li>
+<li><code>log</code> - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li><code>Label</code> - the String Label</li>
 <li><code>Filename</code> - the script file name (if any)</li>
 <li><code>Parameters</code> - the parameters (as a String)</li>
@@ -4874,7 +4874,7 @@ The JSR223 Assertion allows JSR223 scrip
 </properties>
 <p>The following variables are set up for use by the script:</p>
 <ul>
-<li><code>log</code> - (Logger) - can be used to write to the log file</li>
+<li><code>log</code> - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li><code>Label</code> - the String Label</li>
 <li><code>Filename</code> - the script file name (if any)</li>
 <li><code>Parameters</code> - the parameters (as a String)</li>
@@ -5128,7 +5128,7 @@ See the file BeanShellListeners.bshrc fo
 </properties>
 <p>Before invoking the script, some variables are set up in the BeanShell interpreter:</p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>ctx - (<a href="../api/org/apache/jmeter/threads/JMeterContext.html">JMeterContext</a>) - gives access to the context</li>
 <li>vars - (<a href="../api/org/apache/jmeter/threads/JMeterVariables.html">JMeterVariables</a>) - gives read/write access to variables: vars.get(key); vars.put(key,val); vars.putObject("OBJ1",new Object());</li>
 <li>props - (JMeterProperties - class java.util.Properties) - e.g. props.get("START.HMS"); props.put("PROP1","1234");</li>
@@ -5167,7 +5167,7 @@ The BSF Timer can be used to generate a
 </properties>
 <p>Before invoking the script, some variables are set up in the script interpreter:</p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>ctx - (<a href="../api/org/apache/jmeter/threads/JMeterContext.html">JMeterContext</a>) - gives access to the context</li>
 <li>vars - (<a href="../api/org/apache/jmeter/threads/JMeterVariables.html">JMeterVariables</a>) - gives read/write access to variables: vars.get(key); vars.put(key,val); vars.putObject("OBJ1",new Object());</li>
 <li>props - (JMeterProperties - class java.util.Properties) - e.g. props.get("START.HMS"); props.put("PROP1","1234");</li>
@@ -5208,7 +5208,7 @@ The JSR223 Timer can be used to generate
 </properties>
 <p>Before invoking the script, some variables are set up in the script interpreter:</p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>ctx - (<a href="../api/org/apache/jmeter/threads/JMeterContext.html">JMeterContext</a>) - gives access to the context</li>
 <li>vars - (<a href="../api/org/apache/jmeter/threads/JMeterVariables.html">JMeterVariables</a>) - gives read/write access to variables: vars.get(key); vars.put(key,val); vars.putObject("OBJ1",new Object());</li>
 <li>props - (JMeterProperties - class java.util.Properties) - e.g. props.get("START.HMS"); props.put("PROP1","1234");</li>
@@ -5425,7 +5425,7 @@ See the file BeanShellListeners.bshrc fo
 </properties>
 <p>Before invoking the script, some variables are set up in the BeanShell interpreter:</p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>ctx - (<a href="../api/org/apache/jmeter/threads/JMeterContext.html">JMeterContext</a>) - gives access to the context</li>
 <li>vars - (<a href="../api/org/apache/jmeter/threads/JMeterVariables.html">JMeterVariables</a>) - gives read/write access to variables: vars.get(key); vars.put(key,val); vars.putObject("OBJ1",new Object());</li>
 <li>props - (JMeterProperties - class java.util.Properties) - e.g. props.get("START.HMS"); props.put("PROP1","1234");</li>
@@ -5459,7 +5459,7 @@ The script (or file) is processed using
 </p>
 <p>The following BSF variables are set up for use by the script:</p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>Label - the String Label</li>
 <li>Filename - the script file name (if any)</li>
 <li>Parameters - the parameters (as a String)</li>
@@ -5494,7 +5494,7 @@ The JSR223 PreProcessor allows JSR223 sc
 </properties>
 <p>The following JSR223 variables are set up for use by the script:</p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>Label - the String Label</li>
 <li>Filename - the script file name (if any)</li>
 <li>Parameters - the parameters (as a String)</li>
@@ -5937,7 +5937,7 @@ See the file BeanShellListeners.bshrc fo
 </properties>
 <p>The following BeanShell variables are set up for use by the script:</p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>ctx - (<a href="../api/org/apache/jmeter/threads/JMeterContext.html">JMeterContext</a>) - gives access to the context</li>
 <li>vars - (<a href="../api/org/apache/jmeter/threads/JMeterVariables.html">JMeterVariables</a>) - gives read/write access to variables: vars.get(key); vars.put(key,val); vars.putObject("OBJ1",new Object());</li>
 <li>props - (JMeterProperties - class java.util.Properties) - e.g. props.get("START.HMS"); props.put("PROP1","1234");</li>
@@ -5974,7 +5974,7 @@ Before invoking the script, some variabl
 Note that these are BSF variables - i.e. they can be used directly in the script.
 </p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>Label - the String Label</li>
 <li>Filename - the script file name (if any)</li>
 <li>Parameters - the parameters (as a String)</li>
@@ -6013,7 +6013,7 @@ Before invoking the script, some variabl
 Note that these are JSR223 variables - i.e. they can be used directly in the script.
 </p>
 <ul>
-<li>log - (Logger) - can be used to write to the log file</li>
+<li>log - (<a href="http://excalibur.apache.org/apidocs/org/apache/log/Logger.html">Logger</a>) - can be used to write to the log file</li>
 <li>Label - the String Label</li>
 <li>Filename - the script file name (if any)</li>
 <li>Parameters - the parameters (as a String)</li>