documentation improvements
Index: src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java,v retrieving revision 1.6 diff -u -r1.6 JUnitTest.java --- src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java 2001/07/11 09:29:50 1.6 +++ src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTest.java 2001/07/23 21:47:51 @@ -64,10 +64,17 @@ import java.util.Vector; /** + * <p> Run a single JUnit test. * + * <p> The JUnit test is actually run by [EMAIL PROTECTED] JUnitTestRunner}. + * So read the doc comments for that class :) + * * @author Thomas Haas * @author <a href="mailto:[EMAIL PROTECTED]">Stefan Bodewig</a>, * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Bailliez</a> + * + * @see JUnitTask + * @see JUnitTestRunner */ public class JUnitTest extends BaseTest { @@ -99,19 +106,30 @@ this.haltOnFail = haltOnFail; } + /** + * Set the name of the test class. + */ public void setName(String value) { name = value; } + /** + * Set the name of the output file. + */ public void setOutfile(String value) { outfile = value; } + /** + * Get the name of the test class. + */ public String getName() { return name; } /** + * Get the name of the output file + * * @return the name of the output file. */ public String getOutfile() {
