Author: milamber
Date: Fri Nov 29 18:49:37 2013
New Revision: 1546622
URL: http://svn.apache.org/r1546622
Log:
Fix javadoc
Modified:
jmeter/trunk/src/core/org/apache/jmeter/gui/util/MenuFactory.java
jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/Utils.java
jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperties.java
jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperty.java
Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/util/MenuFactory.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/util/MenuFactory.java?rev=1546622&r1=1546621&r2=1546622&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/util/MenuFactory.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/util/MenuFactory.java Fri Nov 29 18:49:37
2013
@@ -203,7 +203,7 @@ public final class MenuFactory {
/**
* @param menu JPopupMenu
- * @param addTestFragmentMenu Add Save as Test Fragment menu if true
+ * @param addSaveTestFragmentMenu Add Save as Test Fragment menu if true
*/
public static void addFileMenu(JPopupMenu menu, boolean addSaveTestFragmentMenu) {
addSeparator(menu);
Modified: jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/Utils.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/Utils.java?rev=1546622&r1=1546621&r2=1546622&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/Utils.java (original)
+++ jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/Utils.java Fri Nov 29 18:49:37
2013
@@ -195,10 +195,10 @@ public final class Utils {
/**
- * Converts {@link Arguments} to {@link JmsProperties} defaulting to String type
+ * Converts {@link Arguments} to {@link JMSProperties} defaulting to String type
* Used to convert version <= 2.10 test plans
* @param args {@link Arguments}
- * @return jmsProperties {@link JmsProperties}
+ * @return jmsProperties {@link JMSProperties}
*/
public static final JMSProperties convertArgumentsToJmsProperties(Arguments args) {
JMSProperties jmsProperties = new JMSProperties();
Modified: jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperties.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperties.java?rev=1546622&r1=1546621&r2=1546622&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperties.java
(original)
+++ jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperties.java
Fri Nov 29 18:49:37 2013
@@ -133,8 +133,8 @@ public class JMSProperties extends Abstr
* the name of the argument
* @param value
* the value of the argument
- * @param metadata
- * the metadata for the argument
+ * @param type
+ * the type for the argument
*/
public void addJmsProperty(String name, String value, String type) {
addJmsProperty(new JMSProperty(name, value, type));
Modified: jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperty.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperty.java?rev=1546622&r1=1546621&r2=1546622&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperty.java
(original)
+++ jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSProperty.java
Fri Nov 29 18:49:37 2013
@@ -123,8 +123,8 @@ public class JMSProperty extends Abstrac
/**
* Sets the Meta Data attribute of the JmsProperty.
*
- * @param newMetaData
- * the new metadata
+ * @param type
+ * the new type
*/
public void setType(String type) {
setProperty(new StringProperty(PROP_TYPE, type));
|