scolebourne    2004/01/05 14:27:08

  Modified:    collections/src/java/org/apache/commons/collections
                        OrderedBidiMap.java SortedBidiMap.java
                        BoundedCollection.java KeyValue.java BidiMap.java
                        IterableMap.java Unmodifiable.java BoundedMap.java
                        Buffer.java
  Log:
  Update file layout for consistency
  
  Revision  Changes    Path
  1.2       +4 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/OrderedBidiMap.java
  
  Index: OrderedBidiMap.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/OrderedBidiMap.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- OrderedBidiMap.java       1 Dec 2003 22:34:55 -0000       1.1
  +++ OrderedBidiMap.java       5 Jan 2004 22:27:08 -0000       1.2
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -70,7 +70,7 @@
    * @author Stephen Colebourne
    */
   public interface OrderedBidiMap extends BidiMap, OrderedMap {
  -    
  +
       /**
        * Gets a view of this map where the keys and values are reversed.
        * <p>
  
  
  
  1.4       +4 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/SortedBidiMap.java
  
  Index: SortedBidiMap.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/SortedBidiMap.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SortedBidiMap.java        1 Dec 2003 22:34:55 -0000       1.3
  +++ SortedBidiMap.java        5 Jan 2004 22:27:08 -0000       1.4
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -72,7 +72,7 @@
    * @author Stephen Colebourne
    */
   public interface SortedBidiMap extends OrderedBidiMap, SortedMap {
  -    
  +
       /**
        * Gets a view of this map where the keys and values are reversed.
        * <p>
  
  
  
  1.8       +5 -5      
jakarta-commons/collections/src/java/org/apache/commons/collections/BoundedCollection.java
  
  Index: BoundedCollection.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/BoundedCollection.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- BoundedCollection.java    11 Dec 2003 22:48:09 -0000      1.7
  +++ BoundedCollection.java    5 Jan 2004 22:27:08 -0000       1.8
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -80,12 +80,12 @@
        * @return <code>true</code> if the collection is full
        */
       boolean isFull();
  -    
  +
       /**
        * Gets the maximum size of the collection (the bound).
        *
        * @return the maximum number of elements the collection can hold
        */
       int maxSize();
  -    
  +
   }
  
  
  
  1.2       +4 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/KeyValue.java
  
  Index: KeyValue.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/KeyValue.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- KeyValue.java     5 Dec 2003 20:23:57 -0000       1.1
  +++ KeyValue.java     5 Jan 2004 22:27:08 -0000       1.2
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -70,7 +70,7 @@
    * @author Stephen Colebourne
    */
   public interface KeyValue {
  -    
  +
       /**
        * Gets the key from the pair.
        *
  
  
  
  1.11      +4 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/BidiMap.java
  
  Index: BidiMap.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/BidiMap.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- BidiMap.java      2 Dec 2003 23:51:49 -0000       1.10
  +++ BidiMap.java      5 Jan 2004 22:27:08 -0000       1.11
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -75,7 +75,7 @@
    * @author Stephen Colebourne
    */
   public interface BidiMap extends IterableMap {
  -    
  +
       /**
        * Obtains a <code>MapIterator</code> over the map.
        * <p>
  
  
  
  1.2       +4 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/IterableMap.java
  
  Index: IterableMap.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/IterableMap.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IterableMap.java  2 Dec 2003 23:51:49 -0000       1.1
  +++ IterableMap.java  5 Jan 2004 22:27:08 -0000       1.2
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -80,7 +80,7 @@
    * @author Stephen Colebourne
    */
   public interface IterableMap extends Map {
  -    
  +
       /**
        * Obtains a <code>MapIterator</code> over the map.
        * <p>
  
  
  
  1.2       +4 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/Unmodifiable.java
  
  Index: Unmodifiable.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/Unmodifiable.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Unmodifiable.java 2 Nov 2003 17:05:50 -0000       1.1
  +++ Unmodifiable.java 5 Jan 2004 22:27:08 -0000       1.2
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -77,5 +77,5 @@
    * @author Stephen Colebourne
    */
   public interface Unmodifiable {
  -    // marker interface
  +    // marker interface - no methods to implement
   }
  
  
  
  1.2       +5 -5      
jakarta-commons/collections/src/java/org/apache/commons/collections/BoundedMap.java
  
  Index: BoundedMap.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/BoundedMap.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BoundedMap.java   11 Dec 2003 22:48:52 -0000      1.1
  +++ BoundedMap.java   5 Jan 2004 22:27:08 -0000       1.2
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -79,12 +79,12 @@
        * @return <code>true</code> if the map is full
        */
       boolean isFull();
  -    
  +
       /**
        * Gets the maximum size of the map (the bound).
        *
        * @return the maximum number of elements the map can hold
        */
       int maxSize();
  -    
  +
   }
  
  
  
  1.8       +4 -4      
jakarta-commons/collections/src/java/org/apache/commons/collections/Buffer.java
  
  Index: Buffer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/Buffer.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Buffer.java       13 Dec 2003 23:51:28 -0000      1.7
  +++ Buffer.java       5 Jan 2004 22:27:08 -0000       1.8
  @@ -4,7 +4,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2004 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -101,5 +101,5 @@
        * @throws BufferUnderflowException if the buffer is empty
        */
       Object get();
  -    
  +
   }
  
  
  

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

Reply via email to