* updated list of included classes

* updated action items


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rodney Waldhoff 2001-04-23 12:46:54 +00:00
parent b8ed8bbd5e
commit 2f826db45b
1 changed files with 33 additions and 11 deletions

View File

@ -7,7 +7,7 @@
<div align="center"> <div align="center">
<h1>The Jakarta Commons <em>Collections</em> Package</h1> <h1>The Jakarta Commons <em>Collections</em> Package</h1>
$Id: STATUS.html,v 1.3 2001/04/16 16:14:51 jvanzyl Exp $<br> $Id: STATUS.html,v 1.4 2001/04/23 12:46:54 rwaldhoff Exp $<br>
<a href="#Introduction">[Introduction]</a> <a href="#Introduction">[Introduction]</a>
<a href="#Dependencies">[Dependencies]</a> <a href="#Dependencies">[Dependencies]</a>
<a href="#Release Info">[Release Info]</a> <a href="#Release Info">[Release Info]</a>
@ -24,9 +24,29 @@ $Id: STATUS.html,v 1.3 2001/04/16 16:14:51 jvanzyl Exp $<br>
extend or augment the Java Collections Framework. extend or augment the Java Collections Framework.
The following classes are included:</p> The following classes are included:</p>
<ul> <ul>
<li><strong>CursorableLinkedList</strong> - an implementing of the java.util.List <li><strong>ArrayEnumeration</strong> - a java.util.Enumeration wrapper for arrays.</li>
<li><strong>ArrayStack</strong> - An implementation of the java.util.Stack API
that is based on an ArrayList instead of a Vector, so it is not synchronized to
protect against multi-threaded access.</li>
<li><strong>CursorableLinkedList</strong> - an implementation of the java.util.List
interface supporting a java.util.ListIterator that allows concurrent interface supporting a java.util.ListIterator that allows concurrent
modifications to the underlying list.</li> modifications to the underlying list.</li>
<li><strong>ExtendedProperties</strong> - extends normal Java properties by adding
the possibility to use the same key many times, concatenating the value strings
instead of overwriting them.</li>
<li><strong>FastArrayList</strong> - a custom implementation of java.util.ArrayList
designed to operate in a multithreaded environment where the large majority of
method calls are read-only, instead of structural changes.</li>
<li><strong>FastHashMap</strong> - a custom implementation of java.util.HashMap
designed to operate in a multithreaded environment where the large majority of
method calls are read-only, instead of structural changes.</li>
<li><strong>FastTreeMap</strong> - a custom implementation of java.util.TreeMap
designed to operate in a multithreaded environment where the large majority of
method calls are read-only, instead of structural changes.</li>
<li><strong>ListUtils</strong> - miscelaneous utilities to manipulate Lists.</li>
<li><strong>PriorityQueue</strong> - a PriorityQueue interface, with
<strong>BinaryHeap</strong> and <strong>SynchronizedPriorityQueue</strong>
implementations.</li>
</ul> </ul>
<a name="Dependencies"></a> <a name="Dependencies"></a>
@ -68,35 +88,37 @@ component to ensure that it continues to meet a variety of needs.</p>
<a name="Action Items"></a> <a name="Action Items"></a>
<h3>5. ACTION ITEMS</h3> <h3>5. ACTION ITEMS</h3>
<p>The following action items need to be completed prior to a Version 1.0 <p>Want to help? Here's some "to do" items the team has identified.</p>
release of this component:</p>
<table border="1"> <table border="1">
<tr> <tr>
<th width="80%">Action Item</th> <th width="70%">Action Item</th>
<th width="10%">Required for 1.0 Release?</th>
<th width="20%">Volunteer</th> <th width="20%">Volunteer</th>
</tr> </tr>
<tr> <tr>
<td><strong>Additional Contributions</strong>. Other collections <td><strong>Additional Contributions</strong>. Other collections
classes from the existing Jakarta code base.</td> classes.</td>
<td align="center">Craig<br>Peter</td> <td align="center">No?</td>
<td align="center">&nbsp;</td>
</tr> </tr>
<tr> <tr>
<td><strong>Generalized Unit Tests</strong>. Create a generic <td><strong>Generalized Unit Tests</strong>. Create a generic
set of Unit Tests that test the standard contracts of the basic set of Unit Tests that test the standard contracts of the basic
Java Collections interfaces (List, Set, etc.)</td> Java Collections interfaces (List, Set, etc.)</td>
<td align="center">Yes</td>
<td align="center">Rod</td> <td align="center">Rod</td>
</tr> </tr>
<tr> <tr>
<td><strong>Install / Use Documentation</strong>. Create simple <td><strong>Additional Documentation</strong>. Create simple
installation and User's Guide documentation for this package.</td> User's Guide, examples, or other documentation for this package.</td>
<td align="center">No (JavaDoc/Unit tests suffice for now?)</td>
<td align="center">&nbsp;</td> <td align="center">&nbsp;</td>
</tr> </tr>
</table> </table>
</body> </body>
</html> </html>