From 0a67f04278a15c35fcea9d6108c108f6360b7911 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Tue, 13 Mar 2012 11:11:32 +0000 Subject: [PATCH] Javadoc - methods renamed git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1300075 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/collections/BufferUtils.java | 2 +- .../java/org/apache/commons/collections/CollectionUtils.java | 2 +- src/main/java/org/apache/commons/collections/ListUtils.java | 2 +- src/main/java/org/apache/commons/collections/MapUtils.java | 4 ++-- src/main/java/org/apache/commons/collections/SetUtils.java | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/collections/BufferUtils.java b/src/main/java/org/apache/commons/collections/BufferUtils.java index 5775d653a..f44981f03 100644 --- a/src/main/java/org/apache/commons/collections/BufferUtils.java +++ b/src/main/java/org/apache/commons/collections/BufferUtils.java @@ -175,7 +175,7 @@ public class BufferUtils { * method, as it is a backdoor for adding untransformed objects. *

* Existing entries in the specified buffer will not be transformed. - * If you want that behaviour, see {@link TransformedBuffer#decorateTransform}. + * If you want that behaviour, see {@link TransformedBuffer#transformedBuffer}. * * @param buffer the buffer to predicate, must not be null * @param transformer the transformer for the buffer, must not be null diff --git a/src/main/java/org/apache/commons/collections/CollectionUtils.java b/src/main/java/org/apache/commons/collections/CollectionUtils.java index 22329fe99..733f2978b 100644 --- a/src/main/java/org/apache/commons/collections/CollectionUtils.java +++ b/src/main/java/org/apache/commons/collections/CollectionUtils.java @@ -1311,7 +1311,7 @@ public class CollectionUtils { * method, as it is a backdoor for adding untransformed objects. *

* Existing entries in the specified collection will not be transformed. - * If you want that behaviour, see {@link TransformedCollection#decorateTransform}. + * If you want that behaviour, see {@link TransformedCollection#transformedCollection}. * * @param collection the collection to predicate, must not be null * @param transformer the transformer for the collection, must not be null diff --git a/src/main/java/org/apache/commons/collections/ListUtils.java b/src/main/java/org/apache/commons/collections/ListUtils.java index 705f71ca2..4fd5fb779 100644 --- a/src/main/java/org/apache/commons/collections/ListUtils.java +++ b/src/main/java/org/apache/commons/collections/ListUtils.java @@ -344,7 +344,7 @@ public class ListUtils { * method, as it is a backdoor for adding untransformed objects. *

* Existing entries in the specified list will not be transformed. - * If you want that behaviour, see {@link TransformedList#decorateTransform}. + * If you want that behaviour, see {@link TransformedList#transformedList}. * * @param list the list to predicate, must not be null * @param transformer the transformer for the list, must not be null diff --git a/src/main/java/org/apache/commons/collections/MapUtils.java b/src/main/java/org/apache/commons/collections/MapUtils.java index 2b7e34079..11d5938ca 100644 --- a/src/main/java/org/apache/commons/collections/MapUtils.java +++ b/src/main/java/org/apache/commons/collections/MapUtils.java @@ -1266,7 +1266,7 @@ public class MapUtils { * This method returns a new map (decorating the specified map) that * will transform any new entries added to it. * Existing entries in the specified map will not be transformed. - * If you want that behaviour, see {@link TransformedMap#decorateTransform}. + * If you want that behaviour, see {@link TransformedMap#transformedMap}. *

* Each object is passed through the transformers as it is added to the * Map. It is important not to use the original map after invoking this @@ -1498,7 +1498,7 @@ public class MapUtils { * This method returns a new sorted map (decorating the specified map) that * will transform any new entries added to it. * Existing entries in the specified map will not be transformed. - * If you want that behaviour, see {@link TransformedSortedMap#decorateTransform}. + * If you want that behaviour, see {@link TransformedSortedMap#transformedSortedMap}. *

* Each object is passed through the transformers as it is added to the * Map. It is important not to use the original map after invoking this diff --git a/src/main/java/org/apache/commons/collections/SetUtils.java b/src/main/java/org/apache/commons/collections/SetUtils.java index e2b3e2ec8..a1f0b0716 100644 --- a/src/main/java/org/apache/commons/collections/SetUtils.java +++ b/src/main/java/org/apache/commons/collections/SetUtils.java @@ -215,7 +215,7 @@ public class SetUtils { * method, as it is a backdoor for adding untransformed objects. *

* Existing entries in the specified set will not be transformed. - * If you want that behaviour, see {@link TransformedSet#decorateTransform}. + * If you want that behaviour, see {@link TransformedSet#transformedSet}. * * @param set the set to transform, must not be null * @param transformer the transformer for the set, must not be null @@ -306,7 +306,7 @@ public class SetUtils { * method, as it is a backdoor for adding untransformed objects. *

* Existing entries in the specified set will not be transformed. - * If you want that behaviour, see {@link TransformedSortedSet#decorateTransform}. + * If you want that behaviour, see {@link TransformedSortedSet#transformedSortedSet}. * * @param set the set to transform, must not be null * @param transformer the transformer for the set, must not be null