You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2018/05/12 11:37:05 UTC

svn commit: r1831469 - /jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContext.java

Author: fschumacher
Date: Sat May 12 11:37:05 2018
New Revision: 1831469

URL: http://svn.apache.org/viewvc?rev=1831469&view=rev
Log:
javadoc: describe the correct parameter and correct link to method

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

Modified: jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContext.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContext.java?rev=1831469&r1=1831468&r2=1831469&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContext.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContext.java Sat May 12 11:37:05 2018
@@ -30,7 +30,7 @@ import org.apache.jmeter.util.JMeterUtil
 /**
  * Holds context for a thread.
  * Generated by JMeterContextService.
- * 
+ * <br>
  * The class is not thread-safe - it is only intended for use within a single thread.
  */
 public class JMeterContext {
@@ -209,7 +209,7 @@ public class JMeterContext {
     
 
     /**
-     * @param startNextIterationOfCurrentLoop start next iteration of current loop in which this component is present
+     * @param actionOnExecution action to take for next iteration of current loop in which this component is present
      */
     public void setTestLogicalAction(TestLogicalAction actionOnExecution) {
         this.testLogicalAction = actionOnExecution;
@@ -223,7 +223,6 @@ public class JMeterContext {
     }
     
     /**
-     * @deprecated
      * @param restartNextLoop if set to <code>true</code> a restart of the loop will occur
      * @deprecated use {@link JMeterContext#setTestLogicalAction(TestLogicalAction)}
      */
@@ -238,7 +237,7 @@ public class JMeterContext {
     
     /**
      * @return {@code true} when current loop iteration of Thread Group will be interrupted and JMeter will go to next iteration of the Thread Group loop
-     * @deprecated use {@link JMeterContext#isTestLogicalAction()}
+     * @deprecated use {@link JMeterContext#getTestLogicalAction()}
      */
     @Deprecated
     public boolean isStartNextThreadLoop() {