You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by pj...@apache.org on 2002/08/16 02:00:23 UTC

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

pjack       2002/08/15 17:00:23

  Modified:    collections/src/java/org/apache/commons/collections
                        package.html
               collections/src/java/org/apache/commons/collections/comparators
                        package.html
  Added:       collections/src/java/org/apache/commons/collections/iterators
                        package.html
  Log:
  Edited package.html files to include recent stuff.
  
  Revision  Changes    Path
  1.7       +31 -28    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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- package.html	11 Jun 2002 02:40:52 -0000	1.6
  +++ package.html	16 Aug 2002 00:00:23 -0000	1.7
  @@ -29,7 +29,6 @@
           <td valign="top">Map Implementations</td>
           <td>
             {@link org.apache.commons.collections.BeanMap}<br>
  -          {@link org.apache.commons.collections.DefaultMapEntry}<br>
             {@link org.apache.commons.collections.DoubleOrderedMap}<br>
             {@link org.apache.commons.collections.ExtendedProperties}<br>
             {@link org.apache.commons.collections.FastHashMap}<br>
  @@ -37,8 +36,10 @@
             {@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
  @@ -46,23 +47,25 @@
           </td>
         </tr>
         <tr>
  -        <td valign="top">Stack and Queue Implementations</td>
  +        <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">
  -          Special-purpose implementations of the {@link
  -          java.util.Stack} interface, as well as similar {@link
  -          org.apache.commons.collections.PriorityQueue}
  -          interface.
  +          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}
  @@ -72,44 +75,44 @@
           </td>
         </tr>
         <tr>
  -      <tr>
  -        <td valign="top">Adapters</td>
  -        <td>
  -          {@link org.apache.commons.collections.ArrayEnumeration}<br>
  -          {@link org.apache.commons.collections.ArrayIterator}<br>
  -          {@link org.apache.commons.collections.EnumerationIterator}<br>
  -          {@link org.apache.commons.collections.IteratorEnumeration}
  -        </td>
  -        <td valign="top">
  -          Access Java1-style containers as though they were
  -          Java2-style Collections and vice-versa.
  -        </td>
  -      </tr>
  -      <tr>
           <td valign="top">Utilities</td>
           <td valign="top">
  -          {@link org.apache.commons.collections.Closure}<br>
  +          {@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.MapUtils}
  +          {@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, etc.
  +          properties, ensure type-safety, provide decorators, etc.
           </td>
         </tr>
         <tr>
  -        <td valign="top">Transformation Tools</td>
  +        <td valign="top">Functor Interfaces</td>
           <td valign="top">
  -          {@link org.apache.commons.collections.FilterIterator}<br>
  +          {@link org.apache.commons.collections.Factory}<br>
             {@link org.apache.commons.collections.Predicate}<br>
  -          {@link org.apache.commons.collections.ProxyIterator}<br>
  +          {@link org.apache.commons.collections.Closure}<br>
             {@link org.apache.commons.collections.Transformer}<br>
  -          {@link org.apache.commons.collections.TransformIterator}
           </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>
  
  
  
  1.2       +1 -1      jakarta-commons/collections/src/java/org/apache/commons/collections/comparators/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/comparators/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html	13 Aug 2002 01:05:21 -0000	1.1
  +++ package.html	16 Aug 2002 00:00:23 -0000	1.2
  @@ -1,5 +1,5 @@
   <BODY>
  -Contains concrete {@link java.util.Comparator Comparator} instances.  
  +Contains concrete {@link java.util.Comparator Comparator} implementations.  
   You may also consider using 
   {@link org.apache.commons.collections.ComparatorUtils CompatorUtils},
   which is a single class that uses static methods to construct instances
  
  
  
  1.1                  jakarta-commons/collections/src/java/org/apache/commons/collections/iterators/package.html
  
  Index: package.html
  ===================================================================
  <Body>
  Contains concrete {@link java.util.Iterator} implementations and utilities.
  </Body>
  
  
  

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