From 2e7282679d270368e6b4d503cbadc409ea24c101 Mon Sep 17 00:00:00 2001 From: Jacobus Martinus Kruithof Date: Tue, 12 Apr 2005 17:49:37 +0000 Subject: [PATCH] Obtained from: Kev Jackson Javadoc in ContainerMapper to contain lowercase code instead of uppercase code. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278133 13f79535-47bb-0310-9956-ffa450edef68 --- .../tools/ant/util/ContainerMapper.java | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/main/org/apache/tools/ant/util/ContainerMapper.java b/src/main/org/apache/tools/ant/util/ContainerMapper.java index ea63a30f8..aa8d107b1 100755 --- a/src/main/org/apache/tools/ant/util/ContainerMapper.java +++ b/src/main/org/apache/tools/ant/util/ContainerMapper.java @@ -25,7 +25,7 @@ import org.apache.tools.ant.types.Mapper; /** * A FileNameMapper that contains - * other FileNameMappers. + * other FileNameMappers. * @see FileNameMapper */ public abstract class ContainerMapper implements FileNameMapper { @@ -42,11 +42,11 @@ public abstract class ContainerMapper implements FileNameMapper { /** * Add a FileNameMapper. - * @param fileNameMapper a FileNameMapper. + * @param fileNameMapper a FileNameMapper. * @throws IllegalArgumentException if attempting to add this - * ContainerMapper to itself, or if the specified - * FileNameMapper is itself a ContainerMapper - * that contains this ContainerMapper. + * ContainerMapper to itself, or if the specified + * FileNameMapper is itself a ContainerMapper + * that contains this ContainerMapper. */ public synchronized void add(FileNameMapper fileNameMapper) { if (this == fileNameMapper @@ -60,10 +60,10 @@ public abstract class ContainerMapper implements FileNameMapper { } /** - * Return true if this ContainerMapper or any of - * its sub-elements contains the specified FileNameMapper. - * @param fileNameMapper the FileNameMapper to search for. - * @return boolean. + * Return true if this ContainerMapper or any of + * its sub-elements contains the specified FileNameMapper. + * @param fileNameMapper the FileNameMapper to search for. + * @return boolean. */ protected synchronized boolean contains(FileNameMapper fileNameMapper) { boolean foundit = false; @@ -77,8 +77,8 @@ public abstract class ContainerMapper implements FileNameMapper { } /** - * Get the List of FileNameMappers. - * @return List. + * Get the List of FileNameMappers. + * @return List. */ public synchronized List getMappers() { return Collections.unmodifiableList(mappers); @@ -89,6 +89,7 @@ public abstract class ContainerMapper implements FileNameMapper { * @param ignore ignored. */ public void setFrom(String ignore) { + //Empty } /** @@ -96,6 +97,7 @@ public abstract class ContainerMapper implements FileNameMapper { * @param ignore ignored. */ public void setTo(String ignore) { + //Empty } }