Author: sebb
Date: Tue Mar 13 11:11:32 2012
New Revision: 1300075
URL: http://svn.apache.org/viewvc?rev=1300075&view=rev
Log:
Javadoc - methods renamed
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/CollectionUtils.java
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/SetUtils.java
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java?rev=1300075&r1=1300074&r2=1300075&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/BufferUtils.java
Tue Mar 13 11:11:32 2012
@@ -175,7 +175,7 @@ public class BufferUtils {
* method, as it is a backdoor for adding untransformed objects.
* <p>
* 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
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/CollectionUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/CollectionUtils.java?rev=1300075&r1=1300074&r2=1300075&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/CollectionUtils.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/CollectionUtils.java
Tue Mar 13 11:11:32 2012
@@ -1311,7 +1311,7 @@ public class CollectionUtils {
* method, as it is a backdoor for adding untransformed objects.
* <p>
* 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
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java?rev=1300075&r1=1300074&r2=1300075&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/ListUtils.java
Tue Mar 13 11:11:32 2012
@@ -344,7 +344,7 @@ public class ListUtils {
* method, as it is a backdoor for adding untransformed objects.
* <p>
* 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
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java?rev=1300075&r1=1300074&r2=1300075&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MapUtils.java
Tue Mar 13 11:11:32 2012
@@ -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}.
* <p>
* 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}.
* <p>
* 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
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/SetUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/SetUtils.java?rev=1300075&r1=1300074&r2=1300075&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/SetUtils.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/SetUtils.java
Tue Mar 13 11:11:32 2012
@@ -215,7 +215,7 @@ public class SetUtils {
* method, as it is a backdoor for adding untransformed objects.
* <p>
* 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.
* <p>
* 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