From d1b86f00e0c7792282f285afb2ce6c5984919953 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Sun, 11 Nov 2007 23:27:31 +0000 Subject: [PATCH] some javadoc git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@593991 13f79535-47bb-0310-9956-ffa450edef68 --- .../taskdefs/optional/testing/Funtest.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java b/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java index dbba46736..c6d31407c 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/testing/Funtest.java @@ -241,47 +241,91 @@ public class Funtest extends Task { 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; }