public class DependOptions extends AbstractOptions
Options to send to Ant's depend task. Depends will delete out of date class files before compiling. This is not fool-proof, but will cut down on the frequency of having to do a clean build. This may or may not be faster than a clean build. See the Ant Reference for more information.
There is an additional useCache boolean option to enable/disable caching of dependency information. It is true by default.
Constructor and Description |
---|
DependOptions() |
Modifier and Type | Method and Description |
---|---|
java.util.List<java.lang.String> |
excludedFieldsFromOptionMap() |
java.lang.String |
getClasspath() |
boolean |
isClosure() |
boolean |
isDump() |
boolean |
isUseCache() |
boolean |
isWarnOnRmiStubs() |
void |
setClasspath(java.lang.String classpath) |
void |
setClosure(boolean closure) |
void |
setDump(boolean dump) |
void |
setUseCache(boolean useCache) |
void |
setWarnOnRmiStubs(boolean warnOnRmiStubs) |
define, fieldName2AntMap, fieldValue2AntMap, optionMap
public boolean isUseCache()
public void setUseCache(boolean useCache)
public boolean isClosure()
public void setClosure(boolean closure)
public boolean isDump()
public void setDump(boolean dump)
public java.lang.String getClasspath()
public void setClasspath(java.lang.String classpath)
public boolean isWarnOnRmiStubs()
public void setWarnOnRmiStubs(boolean warnOnRmiStubs)
public java.util.List<java.lang.String> excludedFieldsFromOptionMap()
excludedFieldsFromOptionMap
in class AbstractOptions