scolebourne 2003/12/02 15:39:49
Modified: collections/src/java/org/apache/commons/collections/bag
package.html
Log:
Update the associated package html
Revision Changes Path
1.2 +8 -2
jakarta-commons/collections/src/java/org/apache/commons/collections/bag/package.html
Index: package.html
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/bag/package.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- package.html 16 Nov 2003 00:05:43 -0000 1.1
+++ package.html 2 Dec 2003 23:39:48 -0000 1.2
@@ -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 @@
<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
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]