|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tools.ant.ProjectComponent org.apache.tools.ant.types.DataType org.apache.tools.ant.types.PatternSet
public class PatternSet
Named collection of include/exclude tags.
Moved out of MatchingTask to make it a standalone object that could be referenced (by scripts for example).
Nested Class Summary | |
---|---|
class |
PatternSet.NameEntry
inner class to hold a name on list. |
Field Summary |
---|
Fields inherited from class org.apache.tools.ant.types.DataType |
---|
checked, ref |
Fields inherited from class org.apache.tools.ant.ProjectComponent |
---|
description, location, project |
Constructor Summary | |
---|---|
PatternSet()
Creates a new PatternSet instance. |
Method Summary | |
---|---|
void |
addConfiguredPatternset(PatternSet p)
This is a patternset nested element. |
void |
append(PatternSet other,
Project p)
Adds the patterns of the other instance to this set. |
java.lang.Object |
clone()
|
PatternSet.NameEntry |
createExclude()
add a name entry on the exclude list |
PatternSet.NameEntry |
createExcludesFile()
add a name entry on the exclude files list |
PatternSet.NameEntry |
createInclude()
add a name entry on the include list |
PatternSet.NameEntry |
createIncludesFile()
add a name entry on the include files list |
java.lang.String[] |
getExcludePatterns(Project p)
Returns the filtered include patterns. |
java.lang.String[] |
getIncludePatterns(Project p)
Returns the filtered include patterns. |
boolean |
hasPatterns(Project p)
Helper for FileSet classes. |
void |
setExcludes(java.lang.String excludes)
Appends excludes to the current list of exclude patterns. |
void |
setExcludesfile(java.io.File excludesFile)
Sets the name of the file containing the excludes patterns. |
void |
setIncludes(java.lang.String includes)
Appends includes to the current list of include patterns. |
void |
setIncludesfile(java.io.File includesFile)
Sets the name of the file containing the includes patterns. |
void |
setRefid(Reference r)
Makes this instance in effect a reference to another PatternSet instance. |
java.lang.String |
toString()
Basic DataType toString(). |
Methods inherited from class org.apache.tools.ant.types.DataType |
---|
checkAttributesAllowed, checkChildrenAllowed, circularReference, dieOnCircularReference, dieOnCircularReference, dieOnCircularReference, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getDataTypeName, getRefid, invokeCircularReferenceCheck, isChecked, isReference, noChildrenAllowed, setChecked, tooManyAttributes |
Methods inherited from class org.apache.tools.ant.ProjectComponent |
---|
getDescription, getLocation, getProject, log, log, setDescription, setLocation, setProject |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public PatternSet()
PatternSet
instance.
Method Detail |
---|
public void setRefid(Reference r) throws BuildException
You must not set another attribute or nest elements inside this element if you make it a reference.
setRefid
in class DataType
r
- the reference to another patternset.
BuildException
- on error.public void addConfiguredPatternset(PatternSet p)
p
- a configured patternset nested element.public PatternSet.NameEntry createInclude()
public PatternSet.NameEntry createIncludesFile()
public PatternSet.NameEntry createExclude()
public PatternSet.NameEntry createExcludesFile()
public void setIncludes(java.lang.String includes)
includes
to the current list of include patterns.
Patterns may be separated by a comma or a space.
includes
- the string containing the include patternspublic void setExcludes(java.lang.String excludes)
excludes
to the current list of exclude patterns.
Patterns may be separated by a comma or a space.
excludes
- the string containing the exclude patternspublic void setIncludesfile(java.io.File includesFile) throws BuildException
includesFile
- The file to fetch the include patterns from.
BuildException
- on error.public void setExcludesfile(java.io.File excludesFile) throws BuildException
excludesFile
- The file to fetch the exclude patterns from.
BuildException
- on error.public void append(PatternSet other, Project p)
other
- the other PatternSet instance.p
- the current project.public java.lang.String[] getIncludePatterns(Project p)
p
- the current project.
public java.lang.String[] getExcludePatterns(Project p)
p
- the current project.
public boolean hasPatterns(Project p)
p
- the current project.
public java.lang.String toString()
DataType
toString
in class DataType
public java.lang.Object clone()
clone
in class DataType
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |