You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2005/05/15 20:35:33 UTC

svn commit: r170246 - /jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/list/package.html

Author: scolebourne
Date: Sun May 15 11:35:33 2005
New Revision: 170246

URL: http://svn.apache.org/viewcvs?rev=170246&view=rev
Log:
Add GrowthList, an auto-grow on set/add list
bug 34171, including code from Paul Legato

Modified:
    jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/list/package.html

Modified: jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/list/package.html
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/list/package.html?rev=170246&r1=170245&r2=170246&view=diff
==============================================================================
--- jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/list/package.html (original)
+++ jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/list/package.html Sun May 15 11:35:33 2005
@@ -18,24 +18,27 @@
 <p>
 This package contains implementations of the
 {@link java.util.List List} interface.
+</p>
 <p>
 The following implementations are provided in the package:
 <ul>
-<li>TreeList - a list that is optimised for insertions and removals at any index in the list
-<li>CursorableLinkedList - a list that can be modified while it's listIterator (cursor) is being used
-<li>NodeCachingLinkedList - a linked list that caches the storage nodes for a performance gain
+<li>TreeList - a list that is optimised for insertions and removals at any index in the list</li>
+<li>CursorableLinkedList - a list that can be modified while it's listIterator (cursor) is being used</li>
+<li>NodeCachingLinkedList - a linked list that caches the storage nodes for a performance gain</li>
 </ul>
+</p>
 <p>
 The following decorators are provided in the package:
 <ul>
-<li>Synchronized - synchronizes method access for multi-threaded environments
-<li>Unmodifiable - ensures the collection cannot be altered
-<li>Predicated - ensures that only elements that are valid according to a predicate can be added
-<li>Typed - ensures that only elements that are of a specific type can be added
-<li>Transformed - transforms each element added
-<li>FixedSize - ensures that the size of the list cannot change
-<li>Lazy - creates objects in the list on demand
-<li>SetUnique - a list that avoids duplicate entries like a Set
+<li>Synchronized - synchronizes method access for multi-threaded environments</li>
+<li>Unmodifiable - ensures the collection cannot be altered</li>
+<li>Predicated - ensures that only elements that are valid according to a predicate can be added</li>
+<li>Typed - ensures that only elements that are of a specific type can be added</li>
+<li>Transformed - transforms each element added</li>
+<li>FixedSize - ensures that the size of the list cannot change</li>
+<li>Lazy - creates objects in the list on demand</li>
+<li>Growth - grows the list instead of erroring when set/add used with index beyond the list size</li>
+<li>SetUnique - a list that avoids duplicate entries like a Set</li>
 </ul>
-</pre>
+</p>
 </BODY>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org