You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by pe...@apache.org on 2007/11/12 00:27:32 UTC

svn commit: r593991 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java

Author: peterreilly
Date: Sun Nov 11 15:27:31 2007
New Revision: 593991

URL: http://svn.apache.org/viewvc?rev=593991&view=rev
Log:
some javadoc

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java?rev=593991&r1=593990&r2=593991&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java Sun Nov 11 15:27:31 2007
@@ -241,47 +241,91 @@
         teardown = sequence;
     }
 
+    /**
+     * Set the failOnTeardownErrors attribute.
+     * @param failOnTeardownErrors the value to use.
+     */
     public void setFailOnTeardownErrors(boolean failOnTeardownErrors) {
         this.failOnTeardownErrors = failOnTeardownErrors;
     }
 
+    /**
+     * Set the failureMessage attribute.
+     * @param failureMessage the value to use.
+     */
     public void setFailureMessage(String failureMessage) {
         this.failureMessage = failureMessage;
     }
 
+    /**
+     * Set the failureProperty attribute.
+     * @param failureProperty the value to use.
+     */
     public void setFailureProperty(String failureProperty) {
         this.failureProperty = failureProperty;
     }
 
+    /**
+     * Set the shutdownTime attribute.
+     * @param shutdownTime the value to use.
+     */
     public void setShutdownTime(long shutdownTime) {
         this.shutdownTime = shutdownTime;
     }
 
+    /**
+     * Set the timeout attribute.
+     * @param timeout the value to use.
+     */
     public void setTimeout(long timeout) {
         this.timeout = timeout;
     }
 
+    /**
+     * Set the timeoutunit attribute.
+     * @param unit the value to use.
+     */
     public void setTimeoutUnit(WaitFor.Unit unit) {
         timeoutUnitMultiplier = unit.getMultiplier();
     }
 
+    /**
+     * Set the shutdownunit attribute.
+     * @param unit the value to use.
+     */
     public void setShutdownUnit(WaitFor.Unit unit) {
         shutdownUnitMultiplier = unit.getMultiplier();
     }
 
 
+    /**
+     * Get the application exception.
+     * @return the application exception.
+     */
     public BuildException getApplicationException() {
         return applicationException;
     }
 
+    /**
+     * Get the teardown exception.
+     * @return the teardown exception.
+     */
     public BuildException getTeardownException() {
         return teardownException;
     }
 
+    /**
+     * Get the test exception.
+     * @return the test exception.
+     */
     public BuildException getTestException() {
         return testException;
     }
 
+    /**
+     * Get the task exception.
+     * @return the task exception.
+     */
     public BuildException getTaskException() {
         return taskException;
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org