From fd18f108afcf50ca7a969c49dfbd628dc333c17e Mon Sep 17 00:00:00 2001 From: Morgan James Delagrange Date: Fri, 15 Mar 2002 05:41:23 +0000 Subject: [PATCH] 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 --- RELEASE-NOTES-2.0.html | 6 ++++++ STATUS.html | 8 +++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-2.0.html b/RELEASE-NOTES-2.0.html index c20b6081e..2e49d0171 100644 --- a/RELEASE-NOTES-2.0.html +++ b/RELEASE-NOTES-2.0.html @@ -37,6 +37,12 @@ useful Comparator classes.

and then a Object get( key ); will return you a Collection instead of an Integer. This is an interface implemented by MultiHashMap. +
  • ProxyMap - This Map wraps another Map + 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 Map object which + would be unavailable or inconvenient via sub-classing (but usable + via composition).
  • SequencedHashMap - A map of objects whose mapping entries are sequenced based on the order in which they were added.
  • diff --git a/STATUS.html b/STATUS.html index ee8aeed73..e23f6f778 100644 --- a/STATUS.html +++ b/STATUS.html @@ -7,7 +7,7 @@

    The Jakarta Commons Collections Package

    -$Id: STATUS.html,v 1.12 2002/03/07 18:17:47 morgand Exp $
    +$Id: STATUS.html,v 1.13 2002/03/15 05:41:23 morgand Exp $
    [Introduction] [Dependencies] [Release Info] @@ -98,6 +98,12 @@ The following classes are included:

  • PriorityQueue - a PriorityQueue interface, with BinaryHeap and SynchronizedPriorityQueue implementations.
  • +
  • ProxyMap - This Map wraps another Map + 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 Map object which + would be unavailable or inconvenient via sub-classing (but usable + via composition).
  • ReverseComparator - Reverses the order of another comparator.
  • SequencedHashMap - A map of objects whose mapping entries are sequenced based on the order in