Package org.apache.tools.ant.types
Class PatternSet
- java.lang.Object
- 
- org.apache.tools.ant.ProjectComponent
- 
- org.apache.tools.ant.types.DataType
- 
- org.apache.tools.ant.types.PatternSet
 
 
 
- 
- All Implemented Interfaces:
- java.lang.Cloneable
 
 public class PatternSet extends DataType implements java.lang.Cloneable 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 SummaryNested Classes Modifier and Type Class Description classPatternSet.NameEntryinner class to hold a name on list.classPatternSet.PatternFileNameEntryAdds encoding support toPatternSet.NameEntry.
 - 
Field Summary- 
Fields inherited from class org.apache.tools.ant.ProjectComponentdescription, location, project
 
- 
 - 
Constructor SummaryConstructors Constructor Description PatternSet()Creates a newPatternSetinstance.
 - 
Method SummaryModifier and Type Method Description voidaddConfiguredInvert(PatternSet p)Add an inverted patternset.voidaddConfiguredPatternset(PatternSet p)This is a patternset nested element.voidappend(PatternSet other, Project p)Adds the patterns of the other instance to this set.java.lang.Objectclone()PatternSet.NameEntrycreateExclude()add a name entry on the exclude listPatternSet.NameEntrycreateExcludesFile()add a name entry on the exclude files listPatternSet.NameEntrycreateInclude()add a name entry on the include listPatternSet.NameEntrycreateIncludesFile()add a name entry on the include files listjava.lang.String[]getExcludePatterns(Project p)Returns the filtered include patterns.java.lang.String[]getIncludePatterns(Project p)Returns the filtered include patterns.booleanhasPatterns(Project p)Helper for FileSet classes.voidsetExcludes(java.lang.String excludes)Appendsexcludesto the current list of exclude patterns.voidsetExcludesfile(java.io.File excludesFile)Sets the name of the file containing the excludes patterns.voidsetIncludes(java.lang.String includes)Appendsincludesto the current list of include patterns.voidsetIncludesfile(java.io.File includesFile)Sets the name of the file containing the includes patterns.voidsetRefid(Reference r)Makes this instance in effect a reference to another PatternSet instance.java.lang.StringtoString()Basic DataType toString().- 
Methods inherited from class org.apache.tools.ant.types.DataTypecheckAttributesAllowed, checkChildrenAllowed, circularReference, dieOnCircularReference, dieOnCircularReference, dieOnCircularReference, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getDataTypeName, getRefid, invokeCircularReferenceCheck, isChecked, isReference, noChildrenAllowed, pushAndInvokeCircularReferenceCheck, setChecked, tooManyAttributes
 - 
Methods inherited from class org.apache.tools.ant.ProjectComponentgetDescription, getLocation, getProject, log, log, setDescription, setLocation, setProject
 
- 
 
- 
- 
- 
Method Detail- 
setRefidpublic void setRefid(Reference r) throws BuildException Makes this instance in effect a reference to another PatternSet instance.You must not set another attribute or nest elements inside this element if you make it a reference. - Overrides:
- setRefidin class- DataType
- Parameters:
- r- the reference to another patternset.
- Throws:
- BuildException- on error.
 
 - 
addConfiguredPatternsetpublic void addConfiguredPatternset(PatternSet p) This is a patternset nested element.- Parameters:
- p- a configured patternset nested element.
 
 - 
createIncludepublic PatternSet.NameEntry createInclude() add a name entry on the include list- Returns:
- a nested include element to be configured.
 
 - 
createIncludesFilepublic PatternSet.NameEntry createIncludesFile() add a name entry on the include files list- Returns:
- a nested includesfile element to be configured.
 
 - 
createExcludepublic PatternSet.NameEntry createExclude() add a name entry on the exclude list- Returns:
- a nested exclude element to be configured.
 
 - 
createExcludesFilepublic PatternSet.NameEntry createExcludesFile() add a name entry on the exclude files list- Returns:
- a nested excludesfile element to be configured.
 
 - 
setIncludespublic void setIncludes(java.lang.String includes) Appendsincludesto the current list of include patterns. Patterns may be separated by a comma or a space.- Parameters:
- includes- the string containing the include patterns
 
 - 
setExcludespublic void setExcludes(java.lang.String excludes) Appendsexcludesto the current list of exclude patterns. Patterns may be separated by a comma or a space.- Parameters:
- excludes- the string containing the exclude patterns
 
 - 
setIncludesfilepublic void setIncludesfile(java.io.File includesFile) throws BuildExceptionSets the name of the file containing the includes patterns.- Parameters:
- includesFile- The file to fetch the include patterns from.
- Throws:
- BuildException- on error.
 
 - 
setExcludesfilepublic void setExcludesfile(java.io.File excludesFile) throws BuildExceptionSets the name of the file containing the excludes patterns.- Parameters:
- excludesFile- The file to fetch the exclude patterns from.
- Throws:
- BuildException- on error.
 
 - 
appendpublic void append(PatternSet other, Project p) Adds the patterns of the other instance to this set.- Parameters:
- other- the other PatternSet instance.
- p- the current project.
 
 - 
getIncludePatternspublic java.lang.String[] getIncludePatterns(Project p) Returns the filtered include patterns.- Parameters:
- p- the current project.
- Returns:
- the filtered included patterns.
 
 - 
getExcludePatternspublic java.lang.String[] getExcludePatterns(Project p) Returns the filtered include patterns.- Parameters:
- p- the current project.
- Returns:
- the filtered excluded patterns.
 
 - 
hasPatternspublic boolean hasPatterns(Project p) Helper for FileSet classes. Check if there are patterns defined.- Parameters:
- p- the current project.
- Returns:
- true if there are patterns.
 
 - 
toStringpublic java.lang.String toString() Description copied from class:DataTypeBasic DataType toString().
 - 
clonepublic java.lang.Object clone() 
 - 
addConfiguredInvertpublic void addConfiguredInvert(PatternSet p) Add an inverted patternset.- Parameters:
- p- the pattern to invert and add.
 
 
- 
 
-