rwaldhoff 01/04/23 05:46:54
Modified: collections STATUS.html
Log:
* updated list of included classes
* updated action items
Revision Changes Path
1.4 +33 -11 jakarta-commons/collections/STATUS.html
Index: STATUS.html
===================================================================
RCS file: /home/cvs/jakarta-commons/collections/STATUS.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- STATUS.html 2001/04/16 16:14:51 1.3
+++ STATUS.html 2001/04/23 12:46:54 1.4
@@ -7,7 +7,7 @@
<div align="center">
<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="#Dependencies">[Dependencies]</a>
<a href="#Release Info">[Release Info]</a>
@@ -24,9 +24,29 @@
extend or augment the Java Collections Framework.
The following classes are included:</p>
<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
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>
<a name="Dependencies"></a>
@@ -68,35 +88,37 @@
<a name="Action Items"></a>
<h3>5. ACTION ITEMS</h3>
-<p>The following action items need to be completed prior to a Version 1.0
-release of this component:</p>
+<p>Want to help? Here's some "to do" items the team has identified.</p>
<table border="1">
<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>
</tr>
<tr>
<td><strong>Additional Contributions</strong>. Other collections
- classes from the existing Jakarta code base.</td>
- <td align="center">Craig<br>Peter</td>
+ classes.</td>
+ <td align="center">No?</td>
+ <td align="center"> </td>
</tr>
<tr>
<td><strong>Generalized Unit Tests</strong>. Create a generic
set of Unit Tests that test the standard contracts of the basic
Java Collections interfaces (List, Set, etc.)</td>
+ <td align="center">Yes</td>
<td align="center">Rod</td>
</tr>
<tr>
- <td><strong>Install / Use Documentation</strong>. Create simple
- installation and User's Guide documentation for this package.</td>
+ <td><strong>Additional Documentation</strong>. Create simple
+ 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"> </td>
</tr>
-
</table>
</body>
-</html>
+</html>
\ No newline at end of file