From 7617bc52cefc61053fe3ba88dec8f7de1c69ace6 Mon Sep 17 00:00:00 2001 From: pjack Date: Tue, 20 Aug 2002 00:50:07 +0000 Subject: [PATCH] Updated to reflect (almost) all contents of current CVS tree. Left out primitives stuff because that's still in progress. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130805 13f79535-47bb-0310-9956-ffa450edef68 --- STATUS.html | 154 +++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 122 insertions(+), 32 deletions(-) diff --git a/STATUS.html b/STATUS.html index ef369a28f..a7bbc57d7 100644 --- a/STATUS.html +++ b/STATUS.html @@ -7,7 +7,7 @@

The Jakarta Commons Collections Package

-$Id: STATUS.html,v 1.15 2002/08/17 11:39:50 scolebourne Exp $
+$Id: STATUS.html,v 1.16 2002/08/20 00:50:07 pjack Exp $
[Introduction] [Dependencies] [Release Info] @@ -24,8 +24,6 @@ $Id: STATUS.html,v 1.15 2002/08/17 11:39:50 scolebourne Exp $
extend or augment the Java Collections Framework. The following classes are included:

+ +

comparators subpackage:

+ + + +

iterators subpackage:

+ + @@ -182,6 +242,36 @@ component to ensure that it continues to meet a variety of needs.

User's Guide, examples, or other documentation for this package.   + + + Serializable Collections. All of the concrete + Collection and Map implementations should be properly Serializable + across all versions of the JDK. Also, decorators should be + Serializable if the underlying instance is. +   + + + + Fail-Fast Iterators. All concrete Collection and + Map implementations that can have fail-fast iterators should have + them. Some classes, like StaticBucketMap, cannot possibly have + fail-fast iterators, but otherwise everything else should. +   + + + + Standard Constructors. All concrete Collection and + Map implementations should have the standard copy and no-argument + constructors. +   + + + + Additional Unit Tests. Create generic unit tests + for SortedSet and SortedMap. +   + +