From 75f96422de3ec2af64827c34d8c9a13e38bb597e Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Wed, 3 Sep 2003 22:29:51 +0000 Subject: [PATCH] Javadoc git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131129 13f79535-47bb-0310-9956-ffa450edef68 --- .../collections/decorators/ObservedCollection.java | 7 +++---- .../collections/decorators/ObservedList.java | 13 +++---------- .../commons/collections/decorators/ObservedSet.java | 13 +++---------- 3 files changed, 9 insertions(+), 24 deletions(-) diff --git a/src/java/org/apache/commons/collections/decorators/ObservedCollection.java b/src/java/org/apache/commons/collections/decorators/ObservedCollection.java index c024b3b26..0d103cef1 100644 --- a/src/java/org/apache/commons/collections/decorators/ObservedCollection.java +++ b/src/java/org/apache/commons/collections/decorators/ObservedCollection.java @@ -1,5 +1,5 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/ObservedCollection.java,v 1.5 2003/09/03 00:11:28 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/ObservedCollection.java,v 1.6 2003/09/03 22:29:51 scolebourne Exp $ * ==================================================================== * * The Apache Software License, Version 1.1 @@ -65,8 +65,7 @@ import org.apache.commons.collections.event.ModificationHandlerFactory; import org.apache.commons.collections.event.StandardModificationHandler; /** - * ObservedCollection decorates a Collection - * implementation to observe changes in the collection. + * Decorates a Collection implementation to observe modifications. *

* Each modifying method call made on this Collection is forwarded to a * {@link ModificationHandler}. @@ -75,7 +74,7 @@ import org.apache.commons.collections.event.StandardModificationHandler; * See this class for details of configuration available. * * @since Commons Collections 3.0 - * @version $Revision: 1.5 $ $Date: 2003/09/03 00:11:28 $ + * @version $Revision: 1.6 $ $Date: 2003/09/03 22:29:51 $ * * @author Stephen Colebourne */ diff --git a/src/java/org/apache/commons/collections/decorators/ObservedList.java b/src/java/org/apache/commons/collections/decorators/ObservedList.java index fe5d1fce6..604d7691e 100644 --- a/src/java/org/apache/commons/collections/decorators/ObservedList.java +++ b/src/java/org/apache/commons/collections/decorators/ObservedList.java @@ -1,5 +1,5 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/ObservedList.java,v 1.4 2003/09/03 00:11:28 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/ObservedList.java,v 1.5 2003/09/03 22:29:51 scolebourne Exp $ * ==================================================================== * * The Apache Software License, Version 1.1 @@ -65,23 +65,16 @@ import org.apache.commons.collections.event.ModificationHandler; import org.apache.commons.collections.event.ModificationHandlerFactory; /** - * ObservedList decorates a List - * implementation to observe changes. + * Decorates a List implementation to observe modifications. *

* Each modifying method call made on this List is forwarded to a * {@link ModificationHandler}. * The handler manages the event, notifying listeners and optionally vetoing changes. * The default handler is {@link StandardModificationHandler}. * See this class for details of configuration available. - *

- * For convenience, add, remove and get listener methods are made available on - * this class. They accept a generic listener type, whereas handlers generally - * require a specific type. Thus a ClassCastException may be thrown from these - * methods. They may also throw UnsupportedOperationException if the handler - * uses a technique other than listeners to communicate events. * * @since Commons Collections 3.0 - * @version $Revision: 1.4 $ $Date: 2003/09/03 00:11:28 $ + * @version $Revision: 1.5 $ $Date: 2003/09/03 22:29:51 $ * * @author Stephen Colebourne */ diff --git a/src/java/org/apache/commons/collections/decorators/ObservedSet.java b/src/java/org/apache/commons/collections/decorators/ObservedSet.java index 759dede86..63e53b092 100644 --- a/src/java/org/apache/commons/collections/decorators/ObservedSet.java +++ b/src/java/org/apache/commons/collections/decorators/ObservedSet.java @@ -1,5 +1,5 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/ObservedSet.java,v 1.4 2003/09/03 00:11:28 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/decorators/Attic/ObservedSet.java,v 1.5 2003/09/03 22:29:50 scolebourne Exp $ * ==================================================================== * * The Apache Software License, Version 1.1 @@ -63,23 +63,16 @@ import org.apache.commons.collections.event.ModificationHandler; import org.apache.commons.collections.event.ModificationHandlerFactory; /** - * ObservedSet decorates a Set - * implementation to observe changes. + * Decorates a Set implementation to observe modifications. *

* Each modifying method call made on this Set is forwarded to a * {@link ModificationHandler}. * The handler manages the event, notifying listeners and optionally vetoing changes. * The default handler is {@link StandardModificationHandler}. * See this class for details of configuration available. - *

- * For convenience, add, remove and get listener methods are made available on - * this class. They accept a generic listener type, whereas handlers generally - * require a specific type. Thus a ClassCastException may be thrown from these - * methods. They may also throw UnsupportedOperationException if the handler - * uses a technique other than listeners to communicate events. * * @since Commons Collections 3.0 - * @version $Revision: 1.4 $ $Date: 2003/09/03 00:11:28 $ + * @version $Revision: 1.5 $ $Date: 2003/09/03 22:29:50 $ * * @author Stephen Colebourne */