Update the associated package html

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131389 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-12-02 23:39:48 +00:00
parent ae8ad94a24
commit 5457921e7e
1 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<BODY>
<p>
This package contains implementations of the Set and SortedSet interfaces.
This package contains implementations of the Bag and SortedBag interfaces.
<p>
The implementations are in the form of direct implementations and decorators.
A decorator wraps another implementation of the interface to add some
@ -8,8 +8,14 @@ specific additional functionality.
<p>
The following implementations are provided in the package:
<ul>
<li>HashBag - implementation that uses a HashMap to store the data
<li>TreeBag - implementation that uses a TreeMap to store the data
</ul>
<p>
The following decorators are provided in the package:
<ul>
<li>Synchronized - synchronizes method access for multi-threaded environments
<li>Unmodifiable - ensures the collection 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>Typed - ensures that only elements that are of a specific type can be added
<li>Transformed - transforms each element added to the bag