Update package-info: IndexedCollection is a decorator.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1451948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-03-02 22:04:51 +00:00
parent 9d80646a92
commit fc8e866f67
1 changed files with 1 additions and 1 deletions

View File

@ -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$