Methods Summary |
---|
public void | addFormatter(FormatterElement elem)Allow a formatter nested element.
formatters.addElement(elem);
|
public java.lang.String | getErrorProperty()Get the failure property name.
return errorProperty;
|
public java.lang.String | getFailureProperty()Get the failure property name.
return failureProperty;
|
public boolean | getFiltertrace()Get the filtertrace attribute.
return filtertrace;
|
public boolean | getFork()Get the fork attribute.
return fork;
|
public boolean | getHaltonerror()Get the haltonerror attribute.
return haltOnError;
|
public boolean | getHaltonfailure()Get the haltonfailure attribute.
return haltOnFail;
|
public java.lang.String | getTodir()Get the destination directory.
if (destDir != null) {
return destDir.getAbsolutePath();
}
return null;
|
public void | setErrorProperty(java.lang.String errorProperty)Set the name of the error property.
this.errorProperty = errorProperty;
|
public void | setFailureProperty(java.lang.String failureProperty)Set the name of the failure property.
this.failureProperty = failureProperty;
|
public void | setFiltertrace(boolean value)Set the filtertrace attribute.
// CheckStyle:VisibilityModifier ON
filtertrace = value;
|
public void | setFork(boolean value)Set the fork attribute.
fork = value;
|
public void | setHaltonerror(boolean value)Set the haltonerror attribute.
haltOnError = value;
|
public void | setHaltonfailure(boolean value)Set the haltonfailure attribute.
haltOnFail = value;
|
public void | setIf(java.lang.String propertyName)Set the if attribute.
If this property is present in project,
the test will be run.
ifProperty = propertyName;
|
public void | setTodir(java.io.File destDir)Sets the destination directory.
this.destDir = destDir;
|
public void | setUnless(java.lang.String propertyName)Set the unless attribute.
If this property is present in project,
the test will *not* be run.
unlessProperty = propertyName;
|