Author: fschumacher
Date: Thu Nov 13 19:34:07 2014
New Revision: 1639495
URL: http://svn.apache.org/r1639495
Log:
Bug 57193: A bit more description of the parameters in javadoc
Bugzilla Id: 57193
Modified:
jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/Utils.java
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=1639495&r1=1639494&r2=1639495&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 Thu
Nov 13 19:34:07 2014
@@ -168,6 +168,7 @@ public final class Utils {
return null;
}
}
+
/**
* Obtain the queue connection from the context and factory name.
*
@@ -199,9 +200,9 @@ public final class Utils {
/**
* Set JMS Properties to msg
- * @param msg Message
- * @param map Map<String, String>
- * @throws JMSException
+ * @param msg Message to operate on
+ * @param map Map of Properties to be set on the message
+ * @throws JMSException when <code>msg</code> throws a {@link
JMSException} while the properties get set
*/
public static void addJMSProperties(Message msg, Map<String, Object> map)
throws JMSException {
if(map == null) {
@@ -227,8 +228,8 @@ public final class Utils {
/**
* 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}
+ * @param args {@link Arguments} to be converted
+ * @return jmsProperties The converted {@link JMSProperties}
*/
public static final JMSProperties
convertArgumentsToJmsProperties(Arguments args) {
JMSProperties jmsProperties = new JMSProperties();