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

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
 
Fields inherited from class org.apache.tools.ant.ProjectComponent
project
 
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 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.
 void setExcludes(java.lang.String excludes)
          Sets the set 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)
          Sets the set 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()
           
 
Methods inherited from class org.apache.tools.ant.types.DataType
circularReference, dieOnCircularReference, getCheckedRef, getDescription, isReference, noChildrenAllowed, setDescription, tooManyAttributes
 
Methods inherited from class org.apache.tools.ant.ProjectComponent
getProject, log, log, setProject
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, 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

createIncludesFile

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

createExclude

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

createExcludesFile

public PatternSet.NameEntry createExcludesFile()
add a name entry on the exclude files 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 includesFile)
                     throws BuildException
Sets the name of the file containing the includes patterns.
Parameters:
includesFile - The file to fetch the include patterns from.

setExcludesfile

public void setExcludesfile(java.io.File excludesFile)
                     throws BuildException
Sets the name of the file containing the excludes patterns.
Parameters:
excludesFile - 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.

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object


Copyright © 1999-2002 Apache Software Foundation. All Rights Reserved.