Author: sebb
Date: Sat Feb 16 15:36:21 2008
New Revision: 628390

URL: http://svn.apache.org/viewvc?rev=628390&view=rev
Log:
Update Javadoc: testStarted() and testEnded() are called from different threads

Modified:
    
jakarta/jmeter/trunk/src/core/org/apache/jmeter/testelement/TestListener.java

Modified: 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/testelement/TestListener.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/testelement/TestListener.java?rev=628390&r1=628389&r2=628390&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/testelement/TestListener.java 
(original)
+++ 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/testelement/TestListener.java 
Sat Feb 16 15:36:21 2008
@@ -27,46 +27,74 @@
  */
 public interface TestListener {
        /**
+        * <p>
         * Called just before the start of the test from the main engine thread.
         * 
         * This is before the test elements are cloned.
         * 
         * Note that not all the test
         * variables will have been set up at this point.
-        * 
+     * </p>
+     * 
+     * <p>
+     * <b>
+     * N.B. testStarted() and testEnded() are called from different threads.
+     * </b>
+     * </p>
         * @see org.apache.jmeter.engine.StandardJMeterEngine#run()
         * 
         */
        public void testStarted();
 
        /**
+        * <p>
         * Called just before the start of the test from the main engine thread.
         * 
         * This is before the test elements are cloned.
         * 
         * Note that not all the test
         * variables will have been set up at this point.
+        * </p>
         * 
+        * <p>
+        * <b>
+        * N.B. testStarted() and testEnded() are called from different threads.
+        * </b>
+        * </p>
         * @see org.apache.jmeter.engine.StandardJMeterEngine#run()
         * 
         */
        public void testStarted(String host);
 
        /**
+        * <p>
         * Called once for all threads after the end of a test.
         * 
         * This will use the same element instances as at the start of the test.
-        * 
+        * </p> 
+     * 
+     * <p>
+     * <b>
+     * N.B. testStarted() and testEnded() are called from different threads.
+     * </b>
+     * </p>
         * @see org.apache.jmeter.engine.StandardJMeterEngine#stopTest()
         * 
         */
        public void testEnded();
 
        /**
+        * <p>
         * Called once for all threads after the end of a test.
         * 
         * This will use the same element instances as at the start of the test.
-        * 
+     * </p> 
+     * 
+     * <p>
+     * <b>
+     * N.B. testStarted() and testEnded() are called from different threads.
+     * </b>
+     * </p>
         * @see org.apache.jmeter.engine.StandardJMeterEngine#stopTest()
         * 
         */



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

Reply via email to