Update the associated package html

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131394 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-12-03 01:05:31 +00:00
parent c87c643b08
commit 75443cb0fd
1 changed files with 8 additions and 4 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 Buffer and PriorityQueue interfaces.
<p>
The implementations are in the form of direct implementations and decorators.
A decorator wraps another implementation of the interface to add some
@ -9,9 +9,13 @@ specific additional functionality.
The following implementations are provided in the package:
<ul>
<li>BinaryHeap - implements both Buffer and PriorityQueue
<li>Bounded - implements a buffer with a fixed size that throws exceptions when full
<li>Circular - implements a buffer with a fixed size that discards oldest when full
<li>Unbounded - implements a buffer that grows in size if necessary
<li>BoundedBuffer - implements a buffer with a fixed size that throws exceptions when full
<li>CircularBuffer - implements a buffer with a fixed size that discards oldest when full
<li>UnboundedBuffer - implements a buffer that grows in size if necessary
</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>Predicated - ensures that only elements that are valid according to a predicate can be added