more minor javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130938 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rodney Waldhoff 2003-01-11 21:34:39 +00:00
parent ce4f5d6bcb
commit 6d2d1970fb
2 changed files with 6 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/IntIterator.java,v 1.3 2003/01/11 21:28:02 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/IntIterator.java,v 1.4 2003/01/11 21:34:39 rwaldhoff Exp $
* ==================================================================== * ====================================================================
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
@ -64,7 +64,7 @@ package org.apache.commons.collections.primitives;
* @see org.apache.commons.collections.primitives.adapters.IteratorIntIterator * @see org.apache.commons.collections.primitives.adapters.IteratorIntIterator
* *
* @since Commons Collections 2.2 * @since Commons Collections 2.2
* @version $Revision: 1.3 $ $Date: 2003/01/11 21:28:02 $ * @version $Revision: 1.4 $ $Date: 2003/01/11 21:34:39 $
* *
* @author Rodney Waldhoff * @author Rodney Waldhoff
*/ */
@ -73,7 +73,7 @@ public interface IntIterator {
* Returns <code>true</code> iff I have more elements. * Returns <code>true</code> iff I have more elements.
* (In other words, returns <code>true</code> iff * (In other words, returns <code>true</code> iff
* a call to {@link #next next} will return an element * a call to {@link #next next} will return an element
* rather than throwing an exception. * rather than throwing an exception.)
* *
* @return <code>true</code> iff I have more elements * @return <code>true</code> iff I have more elements
*/ */

View File

@ -1,5 +1,5 @@
/* /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/IntList.java,v 1.9 2003/01/11 21:28:02 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/primitives/Attic/IntList.java,v 1.10 2003/01/11 21:34:39 rwaldhoff Exp $
* ==================================================================== * ====================================================================
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
@ -57,8 +57,6 @@
package org.apache.commons.collections.primitives; package org.apache.commons.collections.primitives;
/** /**
* An ordered collection (a list) of <code>int</code> values. * An ordered collection (a list) of <code>int</code> values.
* *
@ -66,7 +64,7 @@ package org.apache.commons.collections.primitives;
* @see org.apache.commons.collections.primitives.adapters.ListIntList * @see org.apache.commons.collections.primitives.adapters.ListIntList
* *
* @since Commons Collections 2.2 * @since Commons Collections 2.2
* @version $Revision: 1.9 $ $Date: 2003/01/11 21:28:02 $ * @version $Revision: 1.10 $ $Date: 2003/01/11 21:34:39 $
* *
* @author Rodney Waldhoff * @author Rodney Waldhoff
*/ */
@ -237,7 +235,7 @@ public interface IntList extends IntCollection {
* <p/> * <p/>
* Note that when <code><i>fromIndex</i> == <i>toIndex</i></code>, * Note that when <code><i>fromIndex</i> == <i>toIndex</i></code>,
* the returned list is empty, and when * the returned list is empty, and when
* <code><i>fromIndex</i> == 0 && <i>fromIndex</i> == {@link #size() size()}</code> * <code><i>fromIndex</i> == 0 && <i>toIndex</i> == {@link #size() size()}</code>
* the returned list is my "improper" sublist, containing all my elements. * the returned list is my "improper" sublist, containing all my elements.
* <p/> * <p/>
* The semantics of the returned list become undefined * The semantics of the returned list become undefined