Changed ReferenceMap to extend AbstractHashedMap, thus gaining a mapIterator() and subclassability

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131618 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-04-01 00:07:48 +00:00
parent dce4319552
commit 6e220f8a84
3 changed files with 372 additions and 450 deletions

View File

@ -30,6 +30,7 @@ No interface changes, or deprecations have occurred.
<center><h3>ENHANCEMENTS</h3></center> <center><h3>ENHANCEMENTS</h3></center>
<ul> <ul>
<li>ReferenceMap - Changed to extend AbstractHashedMap, thus gaining a mapIterator() and subclassability</li>
<li>Fast3Map - Make Serializable [27946]</li> <li>Fast3Map - Make Serializable [27946]</li>
<li>Fast3Map - Add clone() method</li> <li>Fast3Map - Add clone() method</li>
<li>MultiKey - Add getKey(index) and size() methods and make constructor public</li> <li>MultiKey - Add getKey(index) and size() methods and make constructor public</li>

File diff suppressed because it is too large Load Diff

View File

@ -25,11 +25,11 @@ import org.apache.commons.collections.BulkTest;
/** /**
* Tests for ReferenceMap. * Tests for ReferenceMap.
* *
* @version $Revision: 1.3 $ $Date: 2004/02/18 01:20:38 $ * @version $Revision: 1.4 $ $Date: 2004/04/01 00:07:48 $
* *
* @author Paul Jack * @author Paul Jack
*/ */
public class TestReferenceMap extends AbstractTestMap { public class TestReferenceMap extends AbstractTestIterableMap {
public TestReferenceMap(String testName) { public TestReferenceMap(String testName) {
super(testName); super(testName);