Author: tn
Date: Sat Mar 2 22:04:51 2013
New Revision: 1451948
URL: http://svn.apache.org/r1451948
Log:
Update package-info: IndexedCollection is a decorator.
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/package-info.java
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/package-info.java?rev=1451948&r1=1451947&r2=1451948&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/package-info.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/package-info.java
Sat Mar 2 22:04:51 2013
@@ -21,7 +21,6 @@
* The following implementations are provided in the package:
* <ul>
* <li>CompositeCollection - a collection that combines multiple collections
into one
- * <li>IndexedCollection - a collection that provides a map-like view on
another one
* </ul>
* The following decorators are provided in the package:
* <ul>
@@ -29,6 +28,7 @@
* <li>Unmodifiable - ensures the collection cannot be altered
* <li>Predicated - ensures that only elements that are valid according to a
predicate can be added
* <li>Transformed - transforms elements as they are added
+ * <li>Indexed - provides a map-like view onto another collection
* </ul>
*
* @version $Id$