Author: sebb
Date: Fri Apr  4 18:47:59 2008
New Revision: 645008

URL: http://svn.apache.org/viewvc?rev=645008&view=rev
Log:
Javadoc update

Modified:
    jakarta/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterVariables.java

Modified: 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterVariables.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterVariables.java?rev=645008&r1=645007&r2=645008&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterVariables.java 
(original)
+++ 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterVariables.java 
Fri Apr  4 18:47:59 2008
@@ -27,7 +27,8 @@
 import org.apache.jmeter.util.JMeterUtils;
 
 /**
- * @version $Revision$
+ * Class which defines JMeter variables.
+ * These are similar to properties, but they are local to a single thread.
  */
 public class JMeterVariables {
        private Map variables = new HashMap();
@@ -36,7 +37,7 @@
     
     // Property names to preload into JMeter variables:
     private static final String [] PRE_LOAD = {
-      "START.MS", "START.YMD", "START.HMS"  
+      "START.MS", "START.YMD", "START.HMS"  //$NON-NLS-1$ $NON-NLS-2$ 
$NON-NLS-3$
     };
 
        public JMeterVariables() {
@@ -44,7 +45,7 @@
        }
 
     private void preloadVariables(){
-        for (int i = 0; i<PRE_LOAD.length;i++){
+        for (int i = 0; i < PRE_LOAD.length; i++){
             String property=PRE_LOAD[i];
             String value=JMeterUtils.getProperty(property);
             if (value != null){



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to