org.apache.tools.ant.types
Class PatternSet

java.lang.Object
  |
  +--org.apache.tools.ant.types.DataType
        |
        +--org.apache.tools.ant.types.PatternSet

public class PatternSet
extends DataType

Named collection of include/exclude tags.

Moved out of MatchingTask to make it a standalone object that could be referenced (by scripts for example).

Author:
Arnout J. Kuiper ajkuiper@wxs.nl, Stefano Mazzocchi stefano@apache.org, Sam Ruby rubys@us.ibm.com, Jon S. Stevens jon@clearink.com, Stefan Bodewig

Inner Class Summary
 class PatternSet.NameEntry
          inner class to hold a name on list.
 
Fields inherited from class org.apache.tools.ant.types.DataType
checked, description, ref
 
Constructor Summary
PatternSet()
           
 
Method Summary
 void append(PatternSet other, Project p)
          Adds the patterns of the other instance to this set.
 PatternSet.NameEntry createExclude()
          add a name entry on the exclude list
 PatternSet.NameEntry createInclude()
          add a name entry on the include list
 java.lang.String[] getExcludePatterns(Project p)
          Returns the filtered include patterns.
 java.lang.String[] getIncludePatterns(Project p)
          Returns the filtered include patterns.
 void setExcludes(java.lang.String excludes)
          Sets the set of exclude patterns.
 void setExcludesfile(java.io.File excl)
          Sets the name of the file containing the excludes patterns.
 void setIncludes(java.lang.String includes)
          Sets the set of include patterns.
 void setIncludesfile(java.io.File incl)
          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.
 
Methods inherited from class org.apache.tools.ant.types.DataType
circularReference, dieOnCircularReference, getDescription, isReference, noChildrenAllowed, setDescription, tooManyAttributes
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PatternSet

public PatternSet()
Method Detail

setRefid

public 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:
setRefid in class DataType

createInclude

public PatternSet.NameEntry createInclude()
add a name entry on the include list

createExclude

public PatternSet.NameEntry createExclude()
add a name entry on the exclude list

setIncludes

public void setIncludes(java.lang.String includes)
Sets the set of include patterns. Patterns may be separated by a comma or a space.
Parameters:
includes - the string containing the include patterns

setExcludes

public void setExcludes(java.lang.String excludes)
Sets the set of exclude patterns. Patterns may be separated by a comma or a space.
Parameters:
excludes - the string containing the exclude patterns

setIncludesfile

public void setIncludesfile(java.io.File incl)
                     throws BuildException
Sets the name of the file containing the includes patterns.
Parameters:
incl - The file to fetch the include patterns from.

setExcludesfile

public void setExcludesfile(java.io.File excl)
                     throws BuildException
Sets the name of the file containing the excludes patterns.
Parameters:
excl - The file to fetch the exclude patterns from.

append

public void append(PatternSet other,
                   Project p)
Adds the patterns of the other instance to this set.

getIncludePatterns

public java.lang.String[] getIncludePatterns(Project p)
Returns the filtered include patterns.

getExcludePatterns

public java.lang.String[] getExcludePatterns(Project p)
Returns the filtered include patterns.


Copyright ? 2000 Apache Software Foundation. All Rights Reserved.