| org.apache.tools.ant.Task org.apache.tools.ant.taskdefs.DefaultExcludes
DefaultExcludes | public class DefaultExcludes extends Task (Code) | | Alters the default excludes for the entire build..
since: Ant 1.6 |
Method Summary | |
public void | execute() Does the work. | public void | setAdd(String add) | public void | setDefault(boolean def) | public void | setEcho(boolean echo) If true, echo the default excludes. | public void | setRemove(String remove) Pattern to remove from the default excludes. |
setAdd | public void setAdd(String add)(Code) | | Pattern to add to the default excludes
Parameters: add - Sets the value for the pattern to exclude. |
setDefault | public void setDefault(boolean def)(Code) | | go back to standard default patterns
Parameters: def - if true go back to default patterns |
setEcho | public void setEcho(boolean echo)(Code) | | If true, echo the default excludes.
Parameters: echo - whether or not to echo the contents ofthe default excludes. |
setRemove | public void setRemove(String remove)(Code) | | Pattern to remove from the default excludes.
Parameters: remove - Sets the value for the pattern thatshould no longer be excluded. |
|
|