Deprecate MultiHashMap in favour of MultiValueMap

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@209683 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2005-07-08 00:13:22 +00:00
parent eaf850538a
commit b3e0e25c37
2 changed files with 12 additions and 2 deletions

View File

@ -38,11 +38,18 @@ This release is fully source and binary compatible with v3.1.
Please check the bug fixes to ensure you weren't relying on the behaviour of a bug. Please check the bug fixes to ensure you weren't relying on the behaviour of a bug.
</p> </p>
<p> <p>
There is one new <i>deprecation</i>:<br /> There are two new <i>deprecations</i>:<br />
BeanMap is now deprecated and will be removed in v4.0. BeanMap is now deprecated and will be removed in v4.0.
The class is now available in commons-beanutils (full jar version). The class is now available in commons-beanutils (full jar version).
This change was made to ensure that all bean related collections were in one place (ie. beanutils). This change was made to ensure that all bean related collections were in one place (ie. beanutils).
If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org.
</p>
<p>
MultiHashMap is now deprecated and will be removed in v4.0.
The class is now available as MultiValueMap in the map subpackage.
This new version of the class is a decorator and can wrap maps other than HashMap
making it much more flexible.
If this causes major headaches to anyone please contact commons-dev at jakarta.apache.org.
</p> </p>
<center><h3>NEW CLASSES</h3></center> <center><h3>NEW CLASSES</h3></center>

View File

@ -51,6 +51,9 @@ import org.apache.commons.collections.iterators.EmptyIterator;
* <p> * <p>
* <code>list</code> will be a list containing "A", "B", "C". * <code>list</code> will be a list containing "A", "B", "C".
* *
* @deprecated Class now available as MultiValueMap in map subpackage.
* This version is due to be removed in collections v4.0.
*
* @since Commons Collections 2.0 * @since Commons Collections 2.0
* @version $Revision$ $Date$ * @version $Revision$ $Date$
* *