Fix various javadoc link warnings
bug 23680, from Eric Johnson git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131274 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28e0d76b3a
commit
ce07bf068f
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Attic/DualHashBidiMap.java,v 1.2 2003/10/09 20:21:32 scolebourne Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Attic/DualHashBidiMap.java,v 1.3 2003/10/10 21:06:17 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -68,7 +68,7 @@ import java.util.Map;
|
||||||
* Implementation of <code>BidiMap</code> that uses two <code>HashMap</code> instances.
|
* Implementation of <code>BidiMap</code> that uses two <code>HashMap</code> instances.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Id: DualHashBidiMap.java,v 1.2 2003/10/09 20:21:32 scolebourne Exp $
|
* @version $Id: DualHashBidiMap.java,v 1.3 2003/10/10 21:06:17 scolebourne Exp $
|
||||||
*
|
*
|
||||||
* @author Matthew Hawthorne
|
* @author Matthew Hawthorne
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
|
@ -124,8 +124,8 @@ public class DualHashBidiMap extends AbstractDualBidiMap implements Serializable
|
||||||
* @param inverseBidiMap the inverse BidiMap
|
* @param inverseBidiMap the inverse BidiMap
|
||||||
* @return new bidi map
|
* @return new bidi map
|
||||||
*/
|
*/
|
||||||
protected BidiMap createBidiMap(Map normalMap, Map reverseMap, BidiMap inverseMap) {
|
protected BidiMap createBidiMap(Map normalMap, Map reverseMap, BidiMap inverseBidiMap) {
|
||||||
return new DualHashBidiMap(normalMap, reverseMap, inverseMap);
|
return new DualHashBidiMap(normalMap, reverseMap, inverseBidiMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Serialization
|
// Serialization
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ObjectArrayIterator.java,v 1.7 2003/09/29 03:56:12 psteitz Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/iterators/ObjectArrayIterator.java,v 1.8 2003/10/10 21:06:18 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -57,6 +57,7 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.commons.collections.iterators;
|
package org.apache.commons.collections.iterators;
|
||||||
|
|
||||||
|
import java.util.Iterator;
|
||||||
import java.util.NoSuchElementException;
|
import java.util.NoSuchElementException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -69,16 +70,17 @@ import java.util.NoSuchElementException;
|
||||||
* back to the start if required.
|
* back to the start if required.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Revision: 1.7 $ $Date: 2003/09/29 03:56:12 $
|
* @version $Revision: 1.8 $ $Date: 2003/10/10 21:06:18 $
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
|
* @author James Strachan
|
||||||
* @author Mauricio S. Moura
|
* @author Mauricio S. Moura
|
||||||
* @author <a href="mailto:mas@apache.org">Michael A. Smith</a>
|
* @author Michael A. Smith
|
||||||
* @author <a href="mailto:neilotoole@users.sourceforge.net">Neil O'Toole</a>
|
* @author Neil O'Toole
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author Phil Steitz
|
* @author Phil Steitz
|
||||||
*/
|
*/
|
||||||
public class ObjectArrayIterator implements ResetableIterator {
|
public class ObjectArrayIterator
|
||||||
|
implements Iterator, ResetableIterator {
|
||||||
|
|
||||||
/** The array */
|
/** The array */
|
||||||
protected Object[] array = null;
|
protected Object[] array = null;
|
||||||
|
|
Loading…
Reference in New Issue