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 2014/11/27 20:52:11 UTC

svn commit: r1642223 - in /jmeter/trunk/src/core/org/apache/jmeter: control/ReplaceableController.java engine/util/ValueTransformer.java gui/AbstractJMeterGuiComponent.java

Author: fschumacher
Date: Thu Nov 27 19:52:11 2014
New Revision: 1642223

URL: http://svn.apache.org/r1642223
Log:
Bug 57193: Add param and return tags to javadoc
Bugzilla Id: 57193

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/control/ReplaceableController.java
    jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java
    jmeter/trunk/src/core/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/control/ReplaceableController.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/control/ReplaceableController.java?rev=1642223&r1=1642222&r2=1642223&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/control/ReplaceableController.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/control/ReplaceableController.java Thu Nov 27 19:52:11 2014
@@ -32,6 +32,8 @@ public interface ReplaceableController {
      * Used to replace the test execution tree (usually by adding the
      * subelements of the TestElement that is replacing the
      * ReplaceableController.
+     * 
+     * @return The replaced sub tree
      *
      * @see org.apache.jorphan.collections.HashTree
      */

Modified: jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java?rev=1642223&r1=1642222&r2=1642223&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java Thu Nov 27 19:52:11 2014
@@ -30,8 +30,12 @@ interface ValueTransformer {
     /**
      * Transform the given property and return the new version.
      *
-     * @param property Property to be transformed
+     * @param property
+     *            Property to be transformed
      * @return the transformed property
+     * @throws InvalidVariableException
+     *             if something went wrong while computing variables or
+     *             functions
      */
     JMeterProperty transformValue(JMeterProperty property) throws InvalidVariableException;
 

Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java?rev=1642223&r1=1642222&r2=1642223&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/AbstractJMeterGuiComponent.java Thu Nov 27 19:52:11 2014
@@ -90,8 +90,11 @@ public abstract class AbstractJMeterGuiC
     }
 
     /**
-     * Provides a default implementation for setting the comment property. It's unlikely
-     * developers will need to override.
+     * Provides a default implementation for setting the comment property. It's
+     * unlikely developers will need to override.
+     * 
+     * @param comment
+     *            The comment for the property
      */
     public void setComment(String comment) {
         commentPanel.setText(comment);
@@ -131,6 +134,8 @@ public abstract class AbstractJMeterGuiC
     /**
      * Provides a default implementation for the comment property. It's unlikely
      * developers will need to override.
+     * 
+     * @return The comment for the property
      */
     public String getComment() {
         if (getCommentPanel() != null) {