Package org.apache.tools.ant.util
Class ContainerMapper
- java.lang.Object
- 
- org.apache.tools.ant.util.ContainerMapper
 
- 
- All Implemented Interfaces:
- FileNameMapper
 - Direct Known Subclasses:
- ChainedMapper,- CompositeMapper,- FirstMatchMapper
 
 public abstract class ContainerMapper extends java.lang.Object implements FileNameMapper AFileNameMapperthat contains otherFileNameMappers.- See Also:
- FileNameMapper
 
- 
- 
Constructor SummaryConstructors Constructor Description ContainerMapper()
 - 
Method SummaryModifier and Type Method Description voidadd(FileNameMapper fileNameMapper)Add aFileNameMapper.voidaddConfigured(FileNameMapper fileNameMapper)An add configured version of the add method.voidaddConfiguredMapper(Mapper mapper)Add aMapper.protected booleancontains(FileNameMapper fileNameMapper)Returntrueif thisContainerMapperor any of its sub-elements contains the specifiedFileNameMapper.java.util.List<FileNameMapper>getMappers()Get theListofFileNameMappers.voidsetFrom(java.lang.String ignore)Empty implementation.voidsetTo(java.lang.String ignore)Empty implementation.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.tools.ant.util.FileNameMappermapFileName
 
- 
 
- 
- 
- 
Method Detail- 
addConfiguredMapperpublic void addConfiguredMapper(Mapper mapper) Add aMapper.- Parameters:
- mapper- the- Mapperto add.
 
 - 
addConfiguredpublic void addConfigured(FileNameMapper fileNameMapper) An add configured version of the add method. This class used to contain an add method and an addConfiguredMapper method. Dur to ordering, the add method was always called first. This addConfigured method has been added to allow chaining to work correctly.- Parameters:
- fileNameMapper- a- FileNameMapper.
 
 - 
addpublic void add(FileNameMapper fileNameMapper) Add aFileNameMapper.- Parameters:
- fileNameMapper- a- FileNameMapper.
- Throws:
- java.lang.IllegalArgumentException- if attempting to add this- ContainerMapperto itself, or if the specified- FileNameMapperis itself a- ContainerMapperthat contains this- ContainerMapper.
 
 - 
containsprotected boolean contains(FileNameMapper fileNameMapper) Returntrueif thisContainerMapperor any of its sub-elements contains the specifiedFileNameMapper.- Parameters:
- fileNameMapper- the- FileNameMapperto search for.
- Returns:
- boolean.
 
 - 
getMapperspublic java.util.List<FileNameMapper> getMappers() Get theListofFileNameMappers.- Returns:
- List.
 
 - 
setFrompublic void setFrom(java.lang.String ignore) Empty implementation.- Specified by:
- setFromin interface- FileNameMapper
- Parameters:
- ignore- ignored.
 
 - 
setTopublic void setTo(java.lang.String ignore) Empty implementation.- Specified by:
- setToin interface- FileNameMapper
- Parameters:
- ignore- ignored.
 
 
- 
 
-