diff --git a/src/java/org/apache/commons/collections/BidiMap.java b/src/java/org/apache/commons/collections/BidiMap.java index a05ad7e18..4fdab1e8f 100644 --- a/src/java/org/apache/commons/collections/BidiMap.java +++ b/src/java/org/apache/commons/collections/BidiMap.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BidiMap.java,v 1.10 2003/12/02 23:51:49 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BidiMap.java,v 1.11 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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,12 +70,12 @@ package org.apache.commons.collections; * a key to be looked up from a value with equal performance. * * @since Commons Collections 3.0 - * @version $Revision: 1.10 $ $Date: 2003/12/02 23:51:49 $ + * @version $Revision: 1.11 $ $Date: 2004/01/05 22:27:08 $ * * @author Stephen Colebourne */ public interface BidiMap extends IterableMap { - + /** * Obtains a MapIterator over the map. *

diff --git a/src/java/org/apache/commons/collections/BoundedCollection.java b/src/java/org/apache/commons/collections/BoundedCollection.java index 68834ecee..208718601 100644 --- a/src/java/org/apache/commons/collections/BoundedCollection.java +++ b/src/java/org/apache/commons/collections/BoundedCollection.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedCollection.java,v 1.7 2003/12/11 22:48:09 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedCollection.java,v 1.8 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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 @@ -67,7 +67,7 @@ import java.util.Collection; * associated with the maximum number of elements. * * @since Commons Collections 3.0 - * @version $Revision: 1.7 $ $Date: 2003/12/11 22:48:09 $ + * @version $Revision: 1.8 $ $Date: 2004/01/05 22:27:08 $ * * @author Herve Quiroz * @author Stephen Colebourne @@ -80,12 +80,12 @@ public interface BoundedCollection extends Collection { * @return true 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(); - + } diff --git a/src/java/org/apache/commons/collections/BoundedMap.java b/src/java/org/apache/commons/collections/BoundedMap.java index c0321bd48..677b0a080 100644 --- a/src/java/org/apache/commons/collections/BoundedMap.java +++ b/src/java/org/apache/commons/collections/BoundedMap.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedMap.java,v 1.1 2003/12/11 22:48:52 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedMap.java,v 1.2 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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 @@ -67,7 +67,7 @@ import java.util.Map; * associated with the maximum number of elements. * * @since Commons Collections 3.0 - * @version $Revision: 1.1 $ $Date: 2003/12/11 22:48:52 $ + * @version $Revision: 1.2 $ $Date: 2004/01/05 22:27:08 $ * * @author Stephen Colebourne */ @@ -79,12 +79,12 @@ public interface BoundedMap extends Map { * @return true 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(); - + } diff --git a/src/java/org/apache/commons/collections/Buffer.java b/src/java/org/apache/commons/collections/Buffer.java index 7c5f332c6..16ab30f01 100644 --- a/src/java/org/apache/commons/collections/Buffer.java +++ b/src/java/org/apache/commons/collections/Buffer.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Buffer.java,v 1.7 2003/12/13 23:51:28 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Buffer.java,v 1.8 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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 @@ -77,7 +77,7 @@ import java.util.Collection; * {@link Bag}. * * @since Commons Collections 2.1 - * @version $Revision: 1.7 $ $Date: 2003/12/13 23:51:28 $ + * @version $Revision: 1.8 $ $Date: 2004/01/05 22:27:08 $ * * @author Avalon * @author Berin Loritsch @@ -101,5 +101,5 @@ public interface Buffer extends Collection { * @throws BufferUnderflowException if the buffer is empty */ Object get(); - + } diff --git a/src/java/org/apache/commons/collections/IterableMap.java b/src/java/org/apache/commons/collections/IterableMap.java index b426bed7b..fc672d6b7 100644 --- a/src/java/org/apache/commons/collections/IterableMap.java +++ b/src/java/org/apache/commons/collections/IterableMap.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/IterableMap.java,v 1.1 2003/12/02 23:51:49 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/IterableMap.java,v 1.2 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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,12 +75,12 @@ import java.util.Map; * * * @since Commons Collections 3.0 - * @version $Revision: 1.1 $ $Date: 2003/12/02 23:51:49 $ + * @version $Revision: 1.2 $ $Date: 2004/01/05 22:27:08 $ * * @author Stephen Colebourne */ public interface IterableMap extends Map { - + /** * Obtains a MapIterator over the map. *

diff --git a/src/java/org/apache/commons/collections/KeyValue.java b/src/java/org/apache/commons/collections/KeyValue.java index 1da7bb494..4605158e3 100644 --- a/src/java/org/apache/commons/collections/KeyValue.java +++ b/src/java/org/apache/commons/collections/KeyValue.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/KeyValue.java,v 1.1 2003/12/05 20:23:57 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/KeyValue.java,v 1.2 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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 @@ -65,12 +65,12 @@ package org.apache.commons.collections; * two get methods. * * @since Commons Collections 3.0 - * @version $Revision: 1.1 $ $Date: 2003/12/05 20:23:57 $ + * @version $Revision: 1.2 $ $Date: 2004/01/05 22:27:08 $ * * @author Stephen Colebourne */ public interface KeyValue { - + /** * Gets the key from the pair. * diff --git a/src/java/org/apache/commons/collections/OrderedBidiMap.java b/src/java/org/apache/commons/collections/OrderedBidiMap.java index 1cff0eab7..ed92b4744 100644 --- a/src/java/org/apache/commons/collections/OrderedBidiMap.java +++ b/src/java/org/apache/commons/collections/OrderedBidiMap.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/OrderedBidiMap.java,v 1.1 2003/12/01 22:34:55 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/OrderedBidiMap.java,v 1.2 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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 @@ -65,12 +65,12 @@ package org.apache.commons.collections; * a key to be looked up from a value with equal performance. * * @since Commons Collections 3.0 - * @version $Revision: 1.1 $ $Date: 2003/12/01 22:34:55 $ + * @version $Revision: 1.2 $ $Date: 2004/01/05 22:27:08 $ * * @author Stephen Colebourne */ public interface OrderedBidiMap extends BidiMap, OrderedMap { - + /** * Gets a view of this map where the keys and values are reversed. *

diff --git a/src/java/org/apache/commons/collections/SortedBidiMap.java b/src/java/org/apache/commons/collections/SortedBidiMap.java index 02b71389d..840615142 100644 --- a/src/java/org/apache/commons/collections/SortedBidiMap.java +++ b/src/java/org/apache/commons/collections/SortedBidiMap.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/SortedBidiMap.java,v 1.3 2003/12/01 22:34:55 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/SortedBidiMap.java,v 1.4 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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 @@ -67,12 +67,12 @@ import java.util.SortedMap; * a key to be looked up from a value with equal performance. * * @since Commons Collections 3.0 - * @version $Revision: 1.3 $ $Date: 2003/12/01 22:34:55 $ + * @version $Revision: 1.4 $ $Date: 2004/01/05 22:27:08 $ * * @author Stephen Colebourne */ public interface SortedBidiMap extends OrderedBidiMap, SortedMap { - + /** * Gets a view of this map where the keys and values are reversed. *

diff --git a/src/java/org/apache/commons/collections/Unmodifiable.java b/src/java/org/apache/commons/collections/Unmodifiable.java index 90ca8991b..d9d94d8ce 100644 --- a/src/java/org/apache/commons/collections/Unmodifiable.java +++ b/src/java/org/apache/commons/collections/Unmodifiable.java @@ -1,10 +1,10 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Unmodifiable.java,v 1.1 2003/11/02 17:05:50 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Unmodifiable.java,v 1.2 2004/01/05 22:27:08 scolebourne Exp $ * ==================================================================== * * 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,10 +72,10 @@ package org.apache.commons.collections; * then the interface won't be there. * * @since Commons Collections 3.0 - * @version $Revision: 1.1 $ $Date: 2003/11/02 17:05:50 $ + * @version $Revision: 1.2 $ $Date: 2004/01/05 22:27:08 $ * * @author Stephen Colebourne */ public interface Unmodifiable { - // marker interface + // marker interface - no methods to implement }