Package org.eclipse.jetty.ant.types
Class FileMatchingConfiguration
- java.lang.Object
-
- org.eclipse.jetty.ant.types.FileMatchingConfiguration
-
public class FileMatchingConfiguration extends java.lang.Object
Describes set of files matched by<fileset/>
elements in ant configuration file. It is used to group application classes, libraries, and scannedTargets elements.
-
-
Constructor Summary
Constructors Constructor Description FileMatchingConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addDirectoryScanner(org.apache.tools.ant.DirectoryScanner directoryScanner)
java.util.List
getBaseDirectories()
boolean
isIncluded(java.lang.String pathToFile)
Checks if passed file is scanned by any of the directory scanners.
-
-
-
Method Detail
-
addDirectoryScanner
public void addDirectoryScanner(org.apache.tools.ant.DirectoryScanner directoryScanner)
- Parameters:
directoryScanner
- new directory scanner retrieved from the<fileset/>
element.
-
getBaseDirectories
public java.util.List getBaseDirectories()
- Returns:
- a list of base directories denoted by a list of directory scanners.
-
isIncluded
public boolean isIncluded(java.lang.String pathToFile)
Checks if passed file is scanned by any of the directory scanners.- Parameters:
pathToFile
- a fully qualified path to tested file.- Returns:
- true if so, false otherwise.
-
-