Javadoc improvements
bug 22962, from Janek Bogucki git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131141 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6fbdc9aaa7
commit
fb1a16e4cc
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedCollection.java,v 1.3 2003/08/31 17:26:44 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.4 2003/09/07 08:48:46 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -67,9 +67,9 @@ import java.util.Collection;
|
|||
* associated with the maximum number of elements.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/08/31 17:26:44 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/09/07 08:48:46 $
|
||||
*
|
||||
* @author <a href="herve.quiroz@esil.univ-mrs.fr">Herve Quiroz</a>
|
||||
* @author Herve Quiroz
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
public interface BoundedCollection extends Collection {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedFifoBuffer.java,v 1.9 2003/08/31 17:26:44 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BoundedFifoBuffer.java,v 1.10 2003/09/07 08:48:46 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -84,13 +84,13 @@ import java.util.NoSuchElementException;
|
|||
* This buffer prevents null objects from being added.
|
||||
*
|
||||
* @since 2.1
|
||||
* @version $Revision: 1.9 $ $Date: 2003/08/31 17:26:44 $
|
||||
* @version $Revision: 1.10 $ $Date: 2003/09/07 08:48:46 $
|
||||
*
|
||||
* @author Avalon
|
||||
* @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
|
||||
* @author Berin Loritsch
|
||||
* @author Paul Jack
|
||||
* @author Stephen Colebourne
|
||||
* @author <a href="herve.quiroz@esil.univ-mrs.fr">Herve Quiroz</a>
|
||||
* @author Herve Quiroz
|
||||
*/
|
||||
public class BoundedFifoBuffer extends AbstractCollection implements Buffer, BoundedCollection {
|
||||
private final Object[] m_elements;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/UnboundedFifoBuffer.java,v 1.7 2003/08/31 17:26:44 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/UnboundedFifoBuffer.java,v 1.8 2003/09/07 08:48:46 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -83,11 +83,11 @@ import java.util.NoSuchElementException;
|
|||
* This buffer prevents null objects from being added.
|
||||
*
|
||||
* @since Commons Collections 2.1
|
||||
* @version $Revision: 1.7 $ $Date: 2003/08/31 17:26:44 $
|
||||
* @version $Revision: 1.8 $ $Date: 2003/09/07 08:48:46 $
|
||||
*
|
||||
* @author Avalon
|
||||
* @author <a href="fede@apache.org">Federico Barbieri</a>
|
||||
* @author <a href="bloritsch@apache.org">Berin Loritsch</a>
|
||||
* @author Federico Barbieri
|
||||
* @author Berin Loritsch
|
||||
* @author Paul Jack
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue