org.apache.tools.ant.utilClass MergingMapper
- java.lang.Object
- org.apache.tools.ant.util.MergingMapper
- All Implemented Interfaces:
- FileNameMapper
public class MergingMapper extends java.lang.Object implements FileNameMapperImplementation of FileNameMapper that always returns the same target file name.This is the default FileNameMapper for the archiving tasks and uptodate.
Field Summary
Fields Modifier and Type Field and Description protected java.lang.String[]
mergedFile
Constructor Summary
Constructors Constructor and Description MergingMapper()
MergingMapper(java.lang.String to)
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String[]
mapFileName(java.lang.String sourceFileName)
Returns an one-element array containing the file name set via setTo.void
setFrom(java.lang.String from)
Ignored.void
setTo(java.lang.String to)
Sets the name of the merged file.
Constructor Detail
MergingMapper
public MergingMapper()
MergingMapper
public MergingMapper(java.lang.String to)
- Parameters:
to
- String- Since:
- Ant 1.8.0
Method Detail
setFrom
public void setFrom(java.lang.String from)Ignored.
- Specified by:
setFrom
in interfaceFileNameMapper
- Parameters:
from
- ignored.
setTo
public void setTo(java.lang.String to)Sets the name of the merged file.
- Specified by:
setTo
in interfaceFileNameMapper
- Parameters:
to
- the name of the merged file.
mapFileName
public java.lang.String[] mapFileName(java.lang.String sourceFileName)Returns an one-element array containing the file name set via setTo.
- Specified by:
mapFileName
in interfaceFileNameMapper
- Parameters:
sourceFileName
- ignored.- Returns:
- a one-element array containing the merged filename.