Removed Type decorator description from package infos.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1377514 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-08-26 20:40:32 +00:00
parent 1f969bbc34
commit b0649abda4
6 changed files with 0 additions and 6 deletions

View File

@ -30,7 +30,6 @@
* <li>Synchronized - synchronizes method access for multi-threaded environments * <li>Synchronized - synchronizes method access for multi-threaded environments
* <li>Unmodifiable - ensures the bag cannot be altered * <li>Unmodifiable - ensures the bag cannot be altered
* <li>Predicated - ensures that only elements that are valid according to a predicate can be added * <li>Predicated - ensures that only elements that are valid according to a predicate can be added
* <li>Typed - ensures that only elements that are of a specific type can be added
* <li>Transformed - transforms each element added to the bag * <li>Transformed - transforms each element added to the bag
* </ul> * </ul>
* *

View File

@ -31,7 +31,6 @@
* <li>Synchronized - synchronizes method access for multi-threaded environments * <li>Synchronized - synchronizes method access for multi-threaded environments
* <li>Unmodifiable - ensures the collection cannot be altered * <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>Predicated - ensures that only elements that are valid according to a predicate can be added
* <li>Typed - ensures that only elements that are of a specific type can be added
* <li>Transformed - transforms elements added to the buffer * <li>Transformed - transforms elements added to the buffer
* <li>Blocking - blocks on get and remove until an element is available * <li>Blocking - blocks on get and remove until an element is available
* </ul> * </ul>

View File

@ -27,7 +27,6 @@
* <li>Synchronized - synchronizes method access for multi-threaded environments * <li>Synchronized - synchronizes method access for multi-threaded environments
* <li>Unmodifiable - ensures the collection cannot be altered * <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>Predicated - ensures that only elements that are valid according to a predicate can be added
* <li>Typed - ensures that only elements that are of a specific type can be added
* <li>Transformed - transforms elements as they are added * <li>Transformed - transforms elements as they are added
* </ul> * </ul>
* *

View File

@ -29,7 +29,6 @@
* <li>Synchronized - synchronizes method access for multi-threaded environments</li> * <li>Synchronized - synchronizes method access for multi-threaded environments</li>
* <li>Unmodifiable - ensures the collection cannot be altered</li> * <li>Unmodifiable - ensures the collection cannot be altered</li>
* <li>Predicated - ensures that only elements that are valid according to a predicate can be added</li> * <li>Predicated - ensures that only elements that are valid according to a predicate can be added</li>
* <li>Typed - ensures that only elements that are of a specific type can be added</li>
* <li>Transformed - transforms each element added</li> * <li>Transformed - transforms each element added</li>
* <li>FixedSize - ensures that the size of the list cannot change</li> * <li>FixedSize - ensures that the size of the list cannot change</li>
* <li>Lazy - creates objects in the list on demand</li> * <li>Lazy - creates objects in the list on demand</li>

View File

@ -43,7 +43,6 @@
* <ul> * <ul>
* <li>Unmodifiable - ensures the collection cannot be altered * <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>Predicated - ensures that only elements that are valid according to a predicate can be added
* <li>Typed - ensures that only elements that are of a specific type can be added
* <li>Transformed - transforms each element added * <li>Transformed - transforms each element added
* <li>FixedSize - ensures that the size of the map cannot change * <li>FixedSize - ensures that the size of the map cannot change
* <li>Defaulted - provides default values for non-existing keys * <li>Defaulted - provides default values for non-existing keys

View File

@ -31,7 +31,6 @@
* <li>Synchronized - synchronizes method access for multi-threaded environments * <li>Synchronized - synchronizes method access for multi-threaded environments
* <li>Unmodifiable - ensures the collection cannot be altered * <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>Predicated - ensures that only elements that are valid according to a predicate can be added
* <li>Typed - ensures that only elements that are of a specific type can be added
* <li>Transformed - transforms each element added * <li>Transformed - transforms each element added
* <li>ListOrdered - ensures that insertion order is retained * <li>ListOrdered - ensures that insertion order is retained
* <li>MapBackedSet - a set formed by decorating a Map * <li>MapBackedSet - a set formed by decorating a Map