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 2004/01/31 02:33:00 UTC

cvs commit: jakarta-commons/collections/xdocs history.xml navigation.xml

scolebourne    2004/01/30 17:33:00

  Modified:    collections/xdocs navigation.xml
  Added:       collections/xdocs history.xml
  Log:
  Add component history
  
  Revision  Changes    Path
  1.6       +1 -0      jakarta-commons/collections/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/collections/xdocs/navigation.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- navigation.xml	12 Jan 2004 02:33:15 -0000	1.5
  +++ navigation.xml	31 Jan 2004 01:33:00 -0000	1.6
  @@ -20,6 +20,7 @@
       <menu name="Commons Collections">
         <item name="Overview" href="/index.html"/>
         <item name="Users guide" href="/userguide.html"/>
  +      <item name="History" href="/history.html"/>
         <item name="Javadoc (3.0 release)" href="apidocs-COLLECTIONS_3_0/index.html"/>
         <item name="Mailing lists" href="/mail-lists.html"/>
         <item name="Team" href="/team-list.html"/>
  
  
  
  1.1                  jakarta-commons/collections/xdocs/history.xml
  
  Index: history.xml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>
  
  <document>
  
   <properties>
    <title>Commons Collections - History</title>
    <author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
   </properties>
  
   <body>
  
  <section name="History of Commons Collections">
  
  <p>
  Commons-Collections is a classic example of an open-source project evolving over time.
  This page documents some of the key stages.
  </p>
  
  <p>
  <b>Collections 1.0</b> was a gathering of different Collection, Comparator, Iterator and
  Utility classes written elsewhere in Jakarta.
  At this stage, the component focussed mainly on getting re-use of code by making
  everything avaialable together.
  </p>
  <p>
  All classes were placed in one package except the comparators, which had their own subpackage.
  </p>
  
  <p>
  <b>Collections 2.0</b> started the process of growth. The Bag interface was added with
  various implementations. Also added were additional collections implementations.
  </p>
  <p>
  All classes were placed in one package except the comparators, which had their own subpackage.
  </p>
  
  <p>
  <b>Collections 2.1</b> increased the growth again. The Buffer interface was added, unifying
  various previous implementations. Numerous decorators were added as inner classes that
  behave like the unmodifiable or synchronized JDK decorators.
  </p>
  <p>
  As the size of the component increased, the iterators were broken out into their own subpackage.
  Thus there were now three packages, main, comparator and iterator.
  </p>
  
  <p>
  <b>Collections 3.0</b> represents a re-birth of collections after an 18 month absence.
  Many, many classes had been added to CVS but not released including primitive and
  event-generating classes. In order to control the size of the collections distribution,
  these became two new projects - primitives and events.
  </p>
  <p>
  New interfaces BidiMap, MapIterator, ResettableIterator and KeyValue were added.
  Also added were many new implementations of existing collections, especially Maps.
  </p>
  <p>
  As more decorators were added the decision was taken to create a new subpackage for
  the decorators (no more inner classes). However, it became clear that whether a class was
  a decorator or not was not the most important division in finding a collection.
  As a result of this, and the general ongoing growth in the component, a full subpackage
  layout was chosen - one subpackage for each principal collections interface.
  </p>
  <p>
  Essentially the 3.0 release represents the result of changing from a 'dumping ground'
  of re-used collections to a component <b>designed</b> for the purpose.
  Of course, backwards compatability has been retained during all transitions using deprecation.
  </p>
  
  </section>
  
  </body>
  </document>
  
  
  

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