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
-
Nested Class Summary
Modifier and TypeClassDescriptionclass
inner class to hold a name on list.class
Adds encoding support toPatternSet.NameEntry
. -
Field Summary
Fields inherited from class org.apache.tools.ant.ProjectComponent
description, location, project
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add an inverted patternset.void
This is a patternset nested element.void
append
(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.boolean
Helper for FileSet classes.void
setExcludes
(String excludes) Appendsexcludes
to the current list of exclude patterns.void
setExcludesfile
(File excludesFile) Sets the name of the file containing the excludes patterns.void
setIncludes
(String includes) Appendsincludes
to the current list of include patterns.void
setIncludesfile
(File includesFile) Sets the name of the file containing the includes patterns.void
Makes this instance in effect a reference to another PatternSet instance.toString()
Basic DataType toString().Methods inherited from class org.apache.tools.ant.types.DataType
checkAttributesAllowed, 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.ProjectComponent
getDescription, getLocation, getProject, log, log, setDescription, setLocation, setProject
-
Constructor Details
-
PatternSet
public PatternSet()Creates a newPatternSet
instance.
-
-
Method Details
-
setRefid
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:
setRefid
in classDataType
- Parameters:
r
- the reference to another patternset.- Throws:
BuildException
- on error.
-
addConfiguredPatternset
This is a patternset nested element.- Parameters:
p
- a configured patternset nested element.
-
createInclude
add a name entry on the include list- Returns:
- a nested include element to be configured.
-
createIncludesFile
add a name entry on the include files list- Returns:
- a nested includesfile element to be configured.
-
createExclude
add a name entry on the exclude list- Returns:
- a nested exclude element to be configured.
-
createExcludesFile
add a name entry on the exclude files list- Returns:
- a nested excludesfile element to be configured.
-
setIncludes
Appendsincludes
to the current list of include patterns. Patterns may be separated by a comma or a space.- Parameters:
includes
- the string containing the include patterns
-
setExcludes
Appendsexcludes
to the current list of exclude patterns. Patterns may be separated by a comma or a space.- Parameters:
excludes
- the string containing the exclude patterns
-
setIncludesfile
Sets the name of the file containing the includes patterns.- Parameters:
includesFile
- The file to fetch the include patterns from.- Throws:
BuildException
- on error.
-
setExcludesfile
Sets the name of the file containing the excludes patterns.- Parameters:
excludesFile
- The file to fetch the exclude patterns from.- Throws:
BuildException
- on error.
-
append
Adds the patterns of the other instance to this set.- Parameters:
other
- the other PatternSet instance.p
- the current project.
-
getIncludePatterns
-
getExcludePatterns
-
hasPatterns
Helper for FileSet classes. Check if there are patterns defined.- Parameters:
p
- the current project.- Returns:
- true if there are patterns.
-
toString
-
clone
-
addConfiguredInvert
Add an inverted patternset.- Parameters:
p
- the pattern to invert and add.
-