sbailliez 02/01/14 15:13:33
Modified:
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit
JUnitHelper.java JUnitTask.java
Log:
Fix JavaDoc
Revision Changes Path
1.6 +2 -0
jakarta-ant/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitHelper.java
Index: JUnitHelper.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitHelper.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- JUnitHelper.java 13 Jan 2002 23:40:11 -0000 1.5
+++ JUnitHelper.java 14 Jan 2002 23:13:33 -0000 1.6
@@ -87,6 +87,8 @@
/**
* Returns the Test corresponding to to the given class name
+ * @param loader classloader to use when loading the class or
+ * <tt>null</tt> for system classloader.
* @param classname the classname of the test we want to extract.
* @throws Exception a generic exception
*/
1.7 +4 -4
jakarta-ant/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
Index: JUnitTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- JUnitTask.java 14 Jan 2002 00:26:04 -0000 1.6
+++ JUnitTask.java 14 Jan 2002 23:13:33 -0000 1.7
@@ -221,8 +221,8 @@
/**
* Set the maximum memory to be used by the TestRunner
- * @param max the value as defined by <tt>-mx</tt> or <tt>-Xmx</tt>
- * in the java command line options.
+ * @param max the value as defined by <tt>-mx</tt> or <tt>-Xmx</tt>
+ * in the java command line options.
*/
public void setMaxmemory(String max) {
if (Project.getJavaVersion().startsWith("1.1")) {
@@ -234,8 +234,8 @@
/**
* Create a new JVM argument. Ignored if no JVM is forked.
- * @return create a new JVM argument so that any argument can be passed
to the JVM.
- * @see #setFork(boolean)
+ * @return create a new JVM argument so that any argument can be
+ * passed to the JVM.
*/
public Commandline.Argument createJvmarg() {
return cmd.createVmArgument();
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>