Fix various javadoc link warnings
bug 23680, from Eric Johnson git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131286 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e614a8f803
commit
a1e36e8823
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableBag.java,v 1.2 2003/10/09 20:50:04 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableBag.java,v 1.3 2003/10/13 21:18:56 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -75,7 +75,7 @@ import org.apache.commons.collections.Bag;
|
|||
* NOT observed. This is because the set should be unmodifiable.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -86,7 +86,7 @@ public class ObservableBag extends ObservableCollection implements Bag {
|
|||
/**
|
||||
* Factory method to create an observable bag.
|
||||
* <p>
|
||||
* A {@link StandardModificationHandler} will be created.
|
||||
* A {@link org.apache.commons.collections.observed.standard.StandardModificationHandler} will be created.
|
||||
* This can be accessed by {@link #getHandler()} to add listeners.
|
||||
*
|
||||
* @param bag the bag to decorate, must not be null
|
||||
|
@ -120,7 +120,8 @@ public class ObservableBag extends ObservableCollection implements Bag {
|
|||
* is interpretted. An IllegalArgumentException is thrown if no suitable
|
||||
* handler can be found for this listener.
|
||||
* <p>
|
||||
* A <code>null</code> listener will create a {@link StandardModificationHandler}.
|
||||
* A <code>null</code> listener will create a
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
*
|
||||
* @param bag the bag to decorate, must not be null
|
||||
* @param listener bag listener, may be null
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableBuffer.java,v 1.2 2003/10/09 20:50:04 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableBuffer.java,v 1.3 2003/10/13 21:18:56 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -70,7 +70,7 @@ import org.apache.commons.collections.Buffer;
|
|||
* See this class for details of configuration available.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -81,7 +81,7 @@ public class ObservableBuffer extends ObservableCollection implements Buffer {
|
|||
/**
|
||||
* Factory method to create an observable buffer.
|
||||
* <p>
|
||||
* A {@link StandardModificationHandler} will be created.
|
||||
* A {@link org.apache.commons.collections.observed.standard.StandardModificationHandler} will be created.
|
||||
* This can be accessed by {@link #getHandler()} to add listeners.
|
||||
*
|
||||
* @param buffer the buffer to decorate, must not be null
|
||||
|
@ -115,7 +115,8 @@ public class ObservableBuffer extends ObservableCollection implements Buffer {
|
|||
* is interpretted. An IllegalArgumentException is thrown if no suitable
|
||||
* handler can be found for this listener.
|
||||
* <p>
|
||||
* A <code>null</code> listener will create a {@link StandardModificationHandler}.
|
||||
* A <code>null</code> listener will create a
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
*
|
||||
* @param buffer the buffer to decorate, must not be null
|
||||
* @param listener buffer listener, may be null
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableList.java,v 1.2 2003/10/09 20:50:04 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableList.java,v 1.3 2003/10/13 21:18:56 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -77,7 +77,7 @@ import org.apache.commons.collections.decorators.AbstractListIteratorDecorator;
|
|||
* base <code>List</code>.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -88,7 +88,7 @@ public class ObservableList extends ObservableCollection implements List {
|
|||
/**
|
||||
* Factory method to create an observable list.
|
||||
* <p>
|
||||
* A {@link StandardModificationHandler} will be created.
|
||||
* A {@link org.apache.commons.collections.observed.standard.StandardModificationHandler} will be created.
|
||||
* This can be accessed by {@link #getHandler()} to add listeners.
|
||||
*
|
||||
* @param list the list to decorate, must not be null
|
||||
|
@ -122,7 +122,8 @@ public class ObservableList extends ObservableCollection implements List {
|
|||
* is interpretted. An IllegalArgumentException is thrown if no suitable
|
||||
* handler can be found for this listener.
|
||||
* <p>
|
||||
* A <code>null</code> listener will create a {@link StandardModificationHandler}.
|
||||
* A <code>null</code> listener will create a
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
*
|
||||
* @param list the list to decorate, must not be null
|
||||
* @param listener list listener, may be null
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableSet.java,v 1.2 2003/10/09 20:50:04 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableSet.java,v 1.3 2003/10/13 21:18:56 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -66,11 +66,11 @@ import java.util.Set;
|
|||
* {@link ModificationHandler}.
|
||||
* The handler manages the event, notifying listeners and optionally vetoing changes.
|
||||
* The default handler is
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler StandardModificationHandler}.
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
* See this class for details of configuration available.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -81,7 +81,7 @@ public class ObservableSet extends ObservableCollection implements Set {
|
|||
/**
|
||||
* Factory method to create an observable set.
|
||||
* <p>
|
||||
* A {@link StandardModificationHandler} will be created.
|
||||
* A {@link org.apache.commons.collections.observed.standard.StandardModificationHandler} will be created.
|
||||
* This can be accessed by {@link #getHandler()} to add listeners.
|
||||
*
|
||||
* @param set the set to decorate, must not be null
|
||||
|
@ -115,7 +115,8 @@ public class ObservableSet extends ObservableCollection implements Set {
|
|||
* is interpretted. An IllegalArgumentException is thrown if no suitable
|
||||
* handler can be found for this listener.
|
||||
* <p>
|
||||
* A <code>null</code> listener will create a {@link StandardModificationHandler}.
|
||||
* A <code>null</code> listener will create a
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
*
|
||||
* @param set the set to decorate, must not be null
|
||||
* @param listener set listener, may be null
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableSortedBag.java,v 1.2 2003/10/09 20:50:04 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableSortedBag.java,v 1.3 2003/10/13 21:18:56 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -72,7 +72,7 @@ import org.apache.commons.collections.SortedBag;
|
|||
* See this class for details of configuration available.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -83,7 +83,7 @@ public class ObservableSortedBag extends ObservableBag implements SortedBag {
|
|||
/**
|
||||
* Factory method to create an observable bag.
|
||||
* <p>
|
||||
* A {@link StandardModificationHandler} will be created.
|
||||
* A {@link org.apache.commons.collections.observed.standard.StandardModificationHandler} will be created.
|
||||
* This can be accessed by {@link #getHandler()} to add listeners.
|
||||
*
|
||||
* @param bag the bag to decorate, must not be null
|
||||
|
@ -117,7 +117,8 @@ public class ObservableSortedBag extends ObservableBag implements SortedBag {
|
|||
* is interpretted. An IllegalArgumentException is thrown if no suitable
|
||||
* handler can be found for this listener.
|
||||
* <p>
|
||||
* A <code>null</code> listener will create a {@link StandardModificationHandler}.
|
||||
* A <code>null</code> listener will create a
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
*
|
||||
* @param bag the bag to decorate, must not be null
|
||||
* @param listener bag listener, may be null
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableSortedSet.java,v 1.3 2003/10/09 20:50:04 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableSortedSet.java,v 1.4 2003/10/13 21:18:56 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
|
@ -71,7 +71,7 @@ import java.util.SortedSet;
|
|||
* See this class for details of configuration available.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/10/13 21:18:56 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -82,7 +82,7 @@ public class ObservableSortedSet extends ObservableSet implements SortedSet {
|
|||
/**
|
||||
* Factory method to create an observable set.
|
||||
* <p>
|
||||
* A {@link StandardModificationHandler} will be created.
|
||||
* A {@link org.apache.commons.collections.observed.standard.StandardModificationHandler} will be created.
|
||||
* This can be accessed by {@link #getHandler()} to add listeners.
|
||||
*
|
||||
* @param set the set to decorate, must not be null
|
||||
|
@ -116,7 +116,8 @@ public class ObservableSortedSet extends ObservableSet implements SortedSet {
|
|||
* is interpretted. An IllegalArgumentException is thrown if no suitable
|
||||
* handler can be found for this listener.
|
||||
* <p>
|
||||
* A <code>null</code> listener will create a {@link StandardModificationHandler}.
|
||||
* A <code>null</code> listener will create a
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
*
|
||||
* @param set the set to decorate, must not be null
|
||||
* @param listener set listener, may be null
|
||||
|
|
Loading…
Reference in New Issue