added ProxyMap for collections 2.0
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130648 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fac6539a56
commit
fd18f108af
|
@ -37,6 +37,12 @@ useful Comparator classes.</p>
|
|||
and then a Object get( key ); will return you a Collection
|
||||
instead of an Integer. This is an interface implemented
|
||||
by <strong>MultiHashMap</strong>.</li>
|
||||
<li><strong>ProxyMap</strong> - This <code>Map</code> wraps another <code>Map</code>
|
||||
implementation, using the wrapped instance for its default
|
||||
implementation. This class is used as a framework on which to
|
||||
build to extensions for its wrapped <code>Map</code> object which
|
||||
would be unavailable or inconvenient via sub-classing (but usable
|
||||
via composition).</li>
|
||||
<li><strong>SequencedHashMap</strong> - A map of objects whose mapping entries are
|
||||
sequenced based on the order in
|
||||
which they were added.</li>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<div align="center">
|
||||
<h1>The Jakarta Commons <em>Collections</em> Package</h1>
|
||||
$Id: STATUS.html,v 1.12 2002/03/07 18:17:47 morgand Exp $<br>
|
||||
$Id: STATUS.html,v 1.13 2002/03/15 05:41:23 morgand Exp $<br>
|
||||
<a href="#Introduction">[Introduction]</a>
|
||||
<a href="#Dependencies">[Dependencies]</a>
|
||||
<a href="#Release Info">[Release Info]</a>
|
||||
|
@ -98,6 +98,12 @@ The following classes are included:</p>
|
|||
<li><strong>PriorityQueue</strong> - a PriorityQueue interface, with
|
||||
<strong>BinaryHeap</strong> and <strong>SynchronizedPriorityQueue</strong>
|
||||
implementations.</li>
|
||||
<li><strong>ProxyMap</strong> - This <code>Map</code> wraps another <code>Map</code>
|
||||
implementation, using the wrapped instance for its default
|
||||
implementation. This class is used as a framework on which to
|
||||
build to extensions for its wrapped <code>Map</code> object which
|
||||
would be unavailable or inconvenient via sub-classing (but usable
|
||||
via composition).</li>
|
||||
<li><strong>ReverseComparator</strong> - Reverses the order of another comparator.</li>
|
||||
<li><strong>SequencedHashMap</strong> - A map of objects whose mapping entries are
|
||||
sequenced based on the order in
|
||||
|
|
Loading…
Reference in New Issue