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:
- 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 ClassesModifier and TypeClassDescriptionclassinner class to hold a name on list.classAdds encoding support toPatternSet.NameEntry.
- 
Field SummaryFields inherited from class org.apache.tools.ant.ProjectComponentdescription, location, project
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdd an inverted patternset.voidThis is a patternset nested element.voidappend(PatternSet other, Project p) Adds the patterns of the other instance to this set.clone()add a name entry on the exclude listadd a name entry on the exclude files listadd a name entry on the include listadd a name entry on the include files listString[]Returns the filtered include patterns.String[]Returns the filtered include patterns.booleanHelper for FileSet classes.voidsetExcludes(String excludes) Appendsexcludesto the current list of exclude patterns.voidsetExcludesfile(File excludesFile) Sets the name of the file containing the excludes patterns.voidsetIncludes(String includes) Appendsincludesto the current list of include patterns.voidsetIncludesfile(File includesFile) Sets the name of the file containing the includes patterns.voidMakes this instance in effect a reference to another PatternSet instance.toString()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, tooManyAttributesMethods inherited from class org.apache.tools.ant.ProjectComponentgetDescription, getLocation, getProject, log, log, setDescription, setLocation, setProject
- 
Constructor Details- 
PatternSetpublic PatternSet()Creates a newPatternSetinstance.
 
- 
- 
Method Details- 
setRefidMakes 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.
 
- 
addConfiguredPatternsetThis is a patternset nested element.- Parameters:
- p- a configured patternset nested element.
 
- 
createIncludeadd a name entry on the include list- Returns:
- a nested include element to be configured.
 
- 
createIncludesFileadd a name entry on the include files list- Returns:
- a nested includesfile element to be configured.
 
- 
createExcludeadd a name entry on the exclude list- Returns:
- a nested exclude element to be configured.
 
- 
createExcludesFileadd a name entry on the exclude files list- Returns:
- a nested excludesfile element to be configured.
 
- 
setIncludesAppendsincludesto the current list of include patterns. Patterns may be separated by a comma or a space.- Parameters:
- includes- the string containing the include patterns
 
- 
setExcludesAppendsexcludesto the current list of exclude patterns. Patterns may be separated by a comma or a space.- Parameters:
- excludes- the string containing the exclude patterns
 
- 
setIncludesfileSets the name of the file containing the includes patterns.- Parameters:
- includesFile- The file to fetch the include patterns from.
- Throws:
- BuildException- on error.
 
- 
setExcludesfileSets the name of the file containing the excludes patterns.- Parameters:
- excludesFile- The file to fetch the exclude patterns from.
- Throws:
- BuildException- on error.
 
- 
appendAdds the patterns of the other instance to this set.- Parameters:
- other- the other PatternSet instance.
- p- the current project.
 
- 
getIncludePatternsReturns the filtered include patterns.- Parameters:
- p- the current project.
- Returns:
- the filtered included patterns.
 
- 
getExcludePatternsReturns the filtered include patterns.- Parameters:
- p- the current project.
- Returns:
- the filtered excluded patterns.
 
- 
hasPatternsHelper for FileSet classes. Check if there are patterns defined.- Parameters:
- p- the current project.
- Returns:
- true if there are patterns.
 
- 
toStringDescription copied from class:DataTypeBasic DataType toString().
- 
clone
- 
addConfiguredInvertAdd an inverted patternset.- Parameters:
- p- the pattern to invert and add.
 
 
-