Class CutDirsMapper
java.lang.Object
org.apache.tools.ant.types.mappers.CutDirsMapper
- All Implemented Interfaces:
FileNameMapper
A mapper that strips of the a configurable number of leading
directories from a file name.
This mapper was inspired by a user-list thread that mentioned wget's --cut-dirs option.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionString[]
mapFileName
(String sourceFileName) Returns an array containing the target filename(s) for the given source file.void
setDirs
(int dirs) The number of leading directories to cut.void
Empty implementation.void
Empty implementation.
-
Constructor Details
-
CutDirsMapper
public CutDirsMapper()
-
-
Method Details
-
setDirs
public void setDirs(int dirs) The number of leading directories to cut.- Parameters:
dirs
- int
-
setFrom
Empty implementation.- Specified by:
setFrom
in interfaceFileNameMapper
- Parameters:
ignore
- ignored.
-
setTo
Empty implementation.- Specified by:
setTo
in interfaceFileNameMapper
- Parameters:
ignore
- ignored.
-
mapFileName
Returns an array containing the target filename(s) for the given source file.if the given rule doesn't apply to the source file, implementation must return null. SourceFileScanner will then omit the source file in question.
.- Specified by:
mapFileName
in interfaceFileNameMapper
- Parameters:
sourceFileName
- the name of the source file relative to some given basedirectory. Might benull
for resources that don't provide a name.- Returns:
- an array of strings if the rule applies to the source file, or null if it does not.
-