Browse Source

Fix JavaDoc

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270765 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
2c8e8e115b
4 changed files with 9 additions and 7 deletions
  1. +1
    -1
      proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/FormatterElement.java
  2. +2
    -0
      proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitHelper.java
  3. +4
    -4
      proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java
  4. +2
    -2
      proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/TestRunListener.java

+ 1
- 1
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/FormatterElement.java View File

@@ -110,7 +110,7 @@ public class FormatterElement {

/**
* Setting a comma separated list of filters in the specified order.
* @see #addFilter(FilterAttribute)
* @see #addFilter(FilterElement)
* @see FilterAttribute
*/
public void setFilters(String filters) {


+ 2
- 0
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitHelper.java View File

@@ -87,6 +87,8 @@ public final class JUnitHelper {

/**
* 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
*/


+ 4
- 4
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java View File

@@ -221,8 +221,8 @@ public class JUnitTask extends Task {

/**
* 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 @@ public class JUnitTask extends Task {

/**
* 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();


+ 2
- 2
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/junit/TestRunListener.java View File

@@ -61,8 +61,8 @@ import java.util.Properties;
*
* <i>
* This code is based on the code from Erich Gamma made for the
* JUnit plugin for Eclipse. {@link http://www.eclipse.org} and is merged
* with code originating from Ant 1.4.x.
* JUnit plugin for <a href="http://www.eclipse.org">Eclipse</a> and is
* merged with code originating from Ant 1.4.x.
* </i>
*
* @author <a href="mailto:sbailliez@apache.org">Stephane Bailliez</a>


Loading…
Cancel
Save