Update file layout for consistency

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131527 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-01-05 22:27:08 +00:00
parent fc0303fee1
commit fac886756a
9 changed files with 38 additions and 38 deletions

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * 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. * a key to be looked up from a value with equal performance.
* *
* @since Commons Collections 3.0 * @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 * @author Stephen Colebourne
*/ */
public interface BidiMap extends IterableMap { public interface BidiMap extends IterableMap {
/** /**
* Obtains a <code>MapIterator</code> over the map. * Obtains a <code>MapIterator</code> over the map.
* <p> * <p>

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * 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. * associated with the maximum number of elements.
* *
* @since Commons Collections 3.0 * @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 Herve Quiroz
* @author Stephen Colebourne * @author Stephen Colebourne
@ -80,12 +80,12 @@ public interface BoundedCollection extends Collection {
* @return <code>true</code> if the collection is full * @return <code>true</code> if the collection is full
*/ */
boolean isFull(); boolean isFull();
/** /**
* Gets the maximum size of the collection (the bound). * Gets the maximum size of the collection (the bound).
* *
* @return the maximum number of elements the collection can hold * @return the maximum number of elements the collection can hold
*/ */
int maxSize(); int maxSize();
} }

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * 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. * associated with the maximum number of elements.
* *
* @since Commons Collections 3.0 * @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 * @author Stephen Colebourne
*/ */
@ -79,12 +79,12 @@ public interface BoundedMap extends Map {
* @return <code>true</code> if the map is full * @return <code>true</code> if the map is full
*/ */
boolean isFull(); boolean isFull();
/** /**
* Gets the maximum size of the map (the bound). * Gets the maximum size of the map (the bound).
* *
* @return the maximum number of elements the map can hold * @return the maximum number of elements the map can hold
*/ */
int maxSize(); int maxSize();
} }

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -77,7 +77,7 @@ import java.util.Collection;
* {@link Bag}. * {@link Bag}.
* *
* @since Commons Collections 2.1 * @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 Avalon
* @author Berin Loritsch * @author Berin Loritsch
@ -101,5 +101,5 @@ public interface Buffer extends Collection {
* @throws BufferUnderflowException if the buffer is empty * @throws BufferUnderflowException if the buffer is empty
*/ */
Object get(); Object get();
} }

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -75,12 +75,12 @@ import java.util.Map;
* </pre> * </pre>
* *
* @since Commons Collections 3.0 * @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 * @author Stephen Colebourne
*/ */
public interface IterableMap extends Map { public interface IterableMap extends Map {
/** /**
* Obtains a <code>MapIterator</code> over the map. * Obtains a <code>MapIterator</code> over the map.
* <p> * <p>

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -65,12 +65,12 @@ package org.apache.commons.collections;
* two get methods. * two get methods.
* *
* @since Commons Collections 3.0 * @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 * @author Stephen Colebourne
*/ */
public interface KeyValue { public interface KeyValue {
/** /**
* Gets the key from the pair. * Gets the key from the pair.
* *

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * 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. * a key to be looked up from a value with equal performance.
* *
* @since Commons Collections 3.0 * @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 * @author Stephen Colebourne
*/ */
public interface OrderedBidiMap extends BidiMap, OrderedMap { public interface OrderedBidiMap extends BidiMap, OrderedMap {
/** /**
* Gets a view of this map where the keys and values are reversed. * Gets a view of this map where the keys and values are reversed.
* <p> * <p>

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * 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. * a key to be looked up from a value with equal performance.
* *
* @since Commons Collections 3.0 * @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 * @author Stephen Colebourne
*/ */
public interface SortedBidiMap extends OrderedBidiMap, SortedMap { public interface SortedBidiMap extends OrderedBidiMap, SortedMap {
/** /**
* Gets a view of this map where the keys and values are reversed. * Gets a view of this map where the keys and values are reversed.
* <p> * <p>

View File

@ -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 * 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. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * 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. * then the interface won't be there.
* *
* @since Commons Collections 3.0 * @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 * @author Stephen Colebourne
*/ */
public interface Unmodifiable { public interface Unmodifiable {
// marker interface // marker interface - no methods to implement
} }