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 2002/12/08 16:30:58 UTC

cvs commit: jakarta-commons/collections/src/java/org/apache/commons/collections package.html

scolebourne    2002/12/08 07:30:58

  Modified:    collections/src/java/org/apache/commons/collections
                        package.html
  Log:
  Update to latest package status
  
  Revision  Changes    Path
  1.8       +121 -120  jakarta-commons/collections/src/java/org/apache/commons/collections/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/package.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- package.html	16 Aug 2002 00:00:23 -0000	1.7
  +++ package.html	8 Dec 2002 15:30:58 -0000	1.8
  @@ -1,120 +1,121 @@
  -<!-- $Id$ -->
  -<html>
  -   <head>
  -      <title>Package Documentation for org.apache.commons.collections</title>
  -   </head>
  -   <body>
  -      <p>
  -         Java Collections Framework extensions.
  -      </p>
  -      <p>
  -         See also the <tt>java.util</tt> package.
  -      </p>
  -      <table border="1" cellspacing="0" cellpadding="3">
  -      <tr bgcolor="#CCCCFF" class="TableHeadingColor">
  -        <th>Category</th><th>Classes</th><th>Comments</th>
  -      </tr>
  -      <tr>
  -        <td valign="top">List Implementations</td>
  -        <td>
  -          {@link org.apache.commons.collections.CursorableLinkedList}<br>
  -          {@link org.apache.commons.collections.FastArrayList}
  -        </td>
  -        <td valign="top">
  -          Special-purpose implementations of the {@link
  -          java.util.List} interface.
  -        </td>
  -      </tr>
  -      <tr>
  -        <td valign="top">Map Implementations</td>
  -        <td>
  -          {@link org.apache.commons.collections.BeanMap}<br>
  -          {@link org.apache.commons.collections.DoubleOrderedMap}<br>
  -          {@link org.apache.commons.collections.ExtendedProperties}<br>
  -          {@link org.apache.commons.collections.FastHashMap}<br>
  -          {@link org.apache.commons.collections.FastTreeMap}<br>
  -          {@link org.apache.commons.collections.LRUMap}<br>
  -          {@link org.apache.commons.collections.MultiHashMap}<br>
  -          {@link org.apache.commons.collections.ProxyMap}<br>
  -          {@link org.apache.commons.collections.ReferenceMap}<br>
  -          {@link org.apache.commons.collections.SequencedHashMap}<br>
  -          {@link org.apache.commons.collections.SoftRefHashMap}<br>
  -          {@link org.apache.commons.collections.StaticBucketMap}<br>
  -        </td>
  -        <td valign="top">
  -          Special-purpose implementations of the {@link
  -          java.util.Map} interface and associated classes.
  -        </td>
  -      </tr>
  -      <tr>
  -        <td valign="top">Buffer Interface and Implementations</td>
  -        <td>
  -          {@link org.apache.commons.collections.ArrayStack}<br>
  -          {@link org.apache.commons.collections.BinaryHeap}<br>
  -          {@link org.apache.commons.collections.BoundedFifoBuffer}<br>
  -          {@link org.apache.commons.collections.Buffer}<br>
  -          {@link org.apache.commons.collections.PriorityQueue}<br>
  -          {@link org.apache.commons.collections.SynchronizedPriorityQueue}
  -          {@link org.apache.commons.collections.UnboundedFifoBuffer}
  -        </td>
  -        <td valign="top">
  -          New collection interface that specifies a removal order for
  -          the collection, used to implement queues and queue-like things.
  -        </td>
  -      </tr>
  -        <td valign="top">Bag Interface and Implementations</td>
  -        <td>
  -          {@link org.apache.commons.collections.Bag}<br>
  -          {@link org.apache.commons.collections.DefaultMapBag}<br>
  -          {@link org.apache.commons.collections.HashBag}<br>
  -          {@link org.apache.commons.collections.SortedBag}<br>
  -          {@link org.apache.commons.collections.TreeBag}
  -        </td>
  -        <td valign="top">
  -          New collections interface that keeps a count of its members.
  -        </td>
  -      </tr>
  -      <tr>
  -        <td valign="top">Utilities</td>
  -        <td valign="top">
  -          {@link org.apache.commons.collections.BagUtils}<br>
  -          {@link org.apache.commons.collections.BufferUtils}<br>
  -          {@link org.apache.commons.collections.CollectionUtils}<br>
  -          {@link org.apache.commons.collections.ComparatorUtils}<br>
  -          {@link org.apache.commons.collections.ListUtils}<br>
  -          {@link org.apache.commons.collections.MapUtils}<br>
  -          {@link org.apache.commons.collections.SetUtils}
  -        </td>
  -        <td valign="top">
  -          Manipulate collection objects, determine set theoretic
  -          properties, ensure type-safety, provide decorators, etc.
  -        </td>
  -      </tr>
  -      <tr>
  -        <td valign="top">Functor Interfaces</td>
  -        <td valign="top">
  -          {@link org.apache.commons.collections.Factory}<br>
  -          {@link org.apache.commons.collections.Predicate}<br>
  -          {@link org.apache.commons.collections.Closure}<br>
  -          {@link org.apache.commons.collections.Transformer}<br>
  -        </td>
  -        <td valign="top">
  -          Create views or functors on a collection. If your collection
  -          represents <i>X</i>, these allow you to define and look at
  -          <i>f(X)</i>.
  -        </td>
  -      </tr>
  -      <tr>
  -        <td valign="top">Miscellaneous</td>
  -        <td valign="top">
  -          {@link org.apache.commons.collections.StringStack}<br>
  -          {@link org.apache.commons.collections.DefaultMapEntry}<br>
  -        </td>
  -        <td valign="top">
  -          A stack of strings; and the trivial implementation of 
  -            {@link java.util.Map.Entry}.
  -        </td>
  -      </tr>
  -      </table>
  -   </body>
  -</html>
  +<!-- $Id$ -->
  +<html>
  +   <head>
  +      <title>Package Documentation for org.apache.commons.collections</title>
  +   </head>
  +   <body>
  +      <p>
  +         Java Collections Framework extensions.
  +      </p>
  +      <p>
  +         See also the <tt>java.util</tt> package.
  +      </p>
  +      <table border="1" cellspacing="0" cellpadding="3">
  +      <tr bgcolor="#CCCCFF" class="TableHeadingColor">
  +        <th>Category</th><th>Classes</th><th>Comments</th>
  +      </tr>
  +      <tr>
  +        <td valign="top">List Implementations</td>
  +        <td>
  +          {@link org.apache.commons.collections.CursorableLinkedList}<br>
  +          {@link org.apache.commons.collections.FastArrayList}
  +        </td>
  +        <td valign="top">
  +          Special-purpose implementations of the {@link
  +          java.util.List} interface.
  +        </td>
  +      </tr>
  +      <tr>
  +        <td valign="top">Map Implementations</td>
  +        <td>
  +          {@link org.apache.commons.collections.BeanMap}<br>
  +          {@link org.apache.commons.collections.DoubleOrderedMap}<br>
  +          {@link org.apache.commons.collections.ExtendedProperties}<br>
  +          {@link org.apache.commons.collections.FastHashMap}<br>
  +          {@link org.apache.commons.collections.FastTreeMap}<br>
  +          {@link org.apache.commons.collections.LRUMap}<br>
  +          {@link org.apache.commons.collections.MultiHashMap}<br>
  +          {@link org.apache.commons.collections.ProxyMap}<br>
  +          {@link org.apache.commons.collections.ReferenceMap}<br>
  +          {@link org.apache.commons.collections.SequencedHashMap}<br>
  +          {@link org.apache.commons.collections.SoftRefHashMap}<br>
  +          {@link org.apache.commons.collections.StaticBucketMap}<br>
  +        </td>
  +        <td valign="top">
  +          Special-purpose implementations of the {@link
  +          java.util.Map} interface and associated classes.
  +        </td>
  +      </tr>
  +      <tr>
  +        <td valign="top">Buffer Interface and Implementations</td>
  +        <td>
  +          {@link org.apache.commons.collections.ArrayStack}<br>
  +          {@link org.apache.commons.collections.BinaryHeap}<br>
  +          {@link org.apache.commons.collections.BoundedFifoBuffer}<br>
  +          {@link org.apache.commons.collections.Buffer}<br>
  +          {@link org.apache.commons.collections.PriorityQueue}<br>
  +          {@link org.apache.commons.collections.SynchronizedPriorityQueue}
  +          {@link org.apache.commons.collections.UnboundedFifoBuffer}
  +        </td>
  +        <td valign="top">
  +          New collection interface that specifies a removal order for
  +          the collection, used to implement queues and queue-like things.
  +        </td>
  +      </tr>
  +        <td valign="top">Bag Interface and Implementations</td>
  +        <td>
  +          {@link org.apache.commons.collections.Bag}<br>
  +          {@link org.apache.commons.collections.DefaultMapBag}<br>
  +          {@link org.apache.commons.collections.HashBag}<br>
  +          {@link org.apache.commons.collections.SortedBag}<br>
  +          {@link org.apache.commons.collections.TreeBag}
  +        </td>
  +        <td valign="top">
  +          New collections interface that keeps a count of its members.
  +        </td>
  +      </tr>
  +      <tr>
  +        <td valign="top">Utilities</td>
  +        <td valign="top">
  +          {@link org.apache.commons.collections.BagUtils}<br>
  +          {@link org.apache.commons.collections.BufferUtils}<br>
  +          {@link org.apache.commons.collections.CollectionUtils}<br>
  +          {@link org.apache.commons.collections.ComparatorUtils}<br>
  +          {@link org.apache.commons.collections.IteratorUtils}<br>
  +          {@link org.apache.commons.collections.ListUtils}<br>
  +          {@link org.apache.commons.collections.MapUtils}<br>
  +          {@link org.apache.commons.collections.SetUtils}
  +        </td>
  +        <td valign="top">
  +          Manipulate collection objects, determine set theoretic
  +          properties, ensure type-safety, provide decorators, etc.
  +        </td>
  +      </tr>
  +      <tr>
  +        <td valign="top">Functor Interfaces</td>
  +        <td valign="top">
  +          {@link org.apache.commons.collections.Factory}<br>
  +          {@link org.apache.commons.collections.Predicate}<br>
  +          {@link org.apache.commons.collections.Closure}<br>
  +          {@link org.apache.commons.collections.Transformer}<br>
  +        </td>
  +        <td valign="top">
  +          Create views or functors on a collection. If your collection
  +          represents <i>X</i>, these allow you to define and look at
  +          <i>f(X)</i>.
  +        </td>
  +      </tr>
  +      <tr>
  +        <td valign="top">Miscellaneous</td>
  +        <td valign="top">
  +          {@link org.apache.commons.collections.StringStack}<br>
  +          {@link org.apache.commons.collections.DefaultMapEntry}<br>
  +          {@link org.apache.commons.collections.BoundedCollection}<br>
  +        </td>
  +        <td valign="top">
  +          Other collection related classes.
  +        </td>
  +      </tr>
  +      </table>
  +   </body>
  +</html>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>