rwaldhoff    2003/10/29 13:04:17

  Modified:    primitives RELEASE-NOTES.txt
  Log:
  update release notes
  
  Revision  Changes    Path
  1.3       +52 -15    jakarta-commons/primitives/RELEASE-NOTES.txt
  
  Index: RELEASE-NOTES.txt
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/primitives/RELEASE-NOTES.txt,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RELEASE-NOTES.txt 14 Oct 2003 19:40:42 -0000      1.2
  +++ RELEASE-NOTES.txt 29 Oct 2003 21:04:17 -0000      1.3
  @@ -1,28 +1,65 @@
   $Id$
   
              Commons Primitives Package
  -                 Version 0.1
  +                 Version 1.0
                   Release Notes
   
   
   INTRODUCTION:
   
  -This is a first development release of the Commons Primitives package.
  +This is a first release of the Commons Primitives package.
   
  +This release is primarily composed of implementations of the 
  +java.util collections adapted for the primitive types.
   
  -NEW FEATURES:
   
  -Interface for each primitive type:
  -- Collection
  -- List
  -- Iterator
  -- ListIterator
  +FEATURES:
   
  -Implementation for each primitive type:
  -- List
  -- Iterator
  -- ListIterator
  +The current release is composed of four packages.
   
  -Adaptors to the object-based Java Collections Framework
  -Decorators for some classes.
  +1) org.apache.commons.collections.primitives 
   
  + <Type>Collection 
  +  - The java.util.Collection interface adapted for the primitive type <Type>
  +
  + <Type>Iterator
  +  - The java.util.Iterator interface adapted for the primitive type <Type>
  +
  + <Type>List
  +  - The java.util.List interface adapted for the primitive type <Type>
  +
  + <Type>ListIterator
  +  - The java.util.ListIterator interface adapted for the primitive type <Type>
  +
  + Abstract<Type>Collection 
  +  - An abstract base for <Type>Collection implementations
  +
  + RandomAccess<Type>List
  +  - An abstract base for <Type>List implementations backed by random access
  +    data structures like arrays
  +
  + Array<Type>List
  +  - A <Type>List backed by an array
  +
  + <Type>Collections
  +  - Static utility methods for working with <Type>Collection instances
  +
  +
  +2) org.apache.commons.collections.primitives.adapters
  +
  + Adapters between the Object-based and primitive-based collection types.
  +
  +
  +3) org.apache.commons.collections.primitives.adapters.io
  +
  + Adapters converting IO Streams/Readers to Byte/Char iterators, and vice versa.
  + 
  +
  +4) org.apache.commons.collections.primitives.decorators
  +
  + Unmodifiable<Type>List
  + Unmodifiable<Type>Iterator
  + Unmodifiable<Type>ListIterator
  +  
  +  - Unmodifiable decorators around <Type>List, <Type>Iterator and <Type>ListIterator
  + 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to