From a1e36e8823215b10288fa4243e52de917c8ae9bd Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Mon, 13 Oct 2003 21:18:56 +0000 Subject: [PATCH] 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 --- .../commons/collections/observed/ObservableBag.java | 9 +++++---- .../collections/observed/ObservableBuffer.java | 9 +++++---- .../commons/collections/observed/ObservableList.java | 9 +++++---- .../commons/collections/observed/ObservableSet.java | 11 ++++++----- .../collections/observed/ObservableSortedBag.java | 9 +++++---- .../collections/observed/ObservableSortedSet.java | 9 +++++---- 6 files changed, 31 insertions(+), 25 deletions(-) diff --git a/src/java/org/apache/commons/collections/observed/ObservableBag.java b/src/java/org/apache/commons/collections/observed/ObservableBag.java index e437c6609..32977b680 100644 --- a/src/java/org/apache/commons/collections/observed/ObservableBag.java +++ b/src/java/org/apache/commons/collections/observed/ObservableBag.java @@ -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. *

- * 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. *

- * A null listener will create a {@link StandardModificationHandler}. + * A null 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 diff --git a/src/java/org/apache/commons/collections/observed/ObservableBuffer.java b/src/java/org/apache/commons/collections/observed/ObservableBuffer.java index b85590703..edbe11223 100644 --- a/src/java/org/apache/commons/collections/observed/ObservableBuffer.java +++ b/src/java/org/apache/commons/collections/observed/ObservableBuffer.java @@ -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. *

- * 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. *

- * A null listener will create a {@link StandardModificationHandler}. + * A null 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 diff --git a/src/java/org/apache/commons/collections/observed/ObservableList.java b/src/java/org/apache/commons/collections/observed/ObservableList.java index 03dc7f798..9431f262c 100644 --- a/src/java/org/apache/commons/collections/observed/ObservableList.java +++ b/src/java/org/apache/commons/collections/observed/ObservableList.java @@ -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 List. * * @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. *

- * 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. *

- * A null listener will create a {@link StandardModificationHandler}. + * A null 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 diff --git a/src/java/org/apache/commons/collections/observed/ObservableSet.java b/src/java/org/apache/commons/collections/observed/ObservableSet.java index 239ce22ae..156d8a73b 100644 --- a/src/java/org/apache/commons/collections/observed/ObservableSet.java +++ b/src/java/org/apache/commons/collections/observed/ObservableSet.java @@ -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. *

- * 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. *

- * A null listener will create a {@link StandardModificationHandler}. + * A null 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 diff --git a/src/java/org/apache/commons/collections/observed/ObservableSortedBag.java b/src/java/org/apache/commons/collections/observed/ObservableSortedBag.java index 4f59cc022..b65d7bd04 100644 --- a/src/java/org/apache/commons/collections/observed/ObservableSortedBag.java +++ b/src/java/org/apache/commons/collections/observed/ObservableSortedBag.java @@ -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. *

- * 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. *

- * A null listener will create a {@link StandardModificationHandler}. + * A null 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 diff --git a/src/java/org/apache/commons/collections/observed/ObservableSortedSet.java b/src/java/org/apache/commons/collections/observed/ObservableSortedSet.java index 84e57d7c6..a7b6eaae9 100644 --- a/src/java/org/apache/commons/collections/observed/ObservableSortedSet.java +++ b/src/java/org/apache/commons/collections/observed/ObservableSortedSet.java @@ -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. *

- * 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. *

- * A null listener will create a {@link StandardModificationHandler}. + * A null 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