mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-17 15:35:00 +00:00
Deprecate observable implementation, as it is moved to the sandbox
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131373 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dbd5cb3ae8
commit
fb9ab16883
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BagUtils.java,v 1.15 2003/11/16 00:05:44 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BagUtils.java,v 1.16 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -76,7 +76,7 @@ import org.apache.commons.collections.observed.ObservableSortedBag;
|
||||
* {@link Bag} and {@link SortedBag} instances.
|
||||
*
|
||||
* @since Commons Collections 2.1
|
||||
* @version $Revision: 1.15 $ $Date: 2003/11/16 00:05:44 $
|
||||
* @version $Revision: 1.16 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Paul Jack
|
||||
* @author Stephen Colebourne
|
||||
@ -197,6 +197,7 @@ public class BagUtils {
|
||||
* If more than one listener or other complex setup is required then the
|
||||
* ObservableBag class should be accessed directly.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @param bag the bag to decorate, must not be null
|
||||
* @param listener bag listener, must not be null
|
||||
* @return the observed bag
|
||||
@ -307,6 +308,7 @@ public class BagUtils {
|
||||
* If more than one listener or other complex setup is required then the
|
||||
* ObservableSortedBag class should be accessed directly.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @param bag the bag to decorate, must not be null
|
||||
* @param listener bag listener, must not be null
|
||||
* @return the observed bag
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BufferUtils.java,v 1.15 2003/11/16 00:05:44 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/BufferUtils.java,v 1.16 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -70,7 +70,7 @@ import org.apache.commons.collections.observed.ObservableBuffer;
|
||||
* Provides utility methods and decorators for {@link Buffer} instances.
|
||||
*
|
||||
* @since Commons Collections 2.1
|
||||
* @version $Revision: 1.15 $ $Date: 2003/11/16 00:05:44 $
|
||||
* @version $Revision: 1.16 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Paul Jack
|
||||
* @author Stephen Colebourne
|
||||
@ -193,6 +193,7 @@ public class BufferUtils {
|
||||
* If more than one listener or other complex setup is required then the
|
||||
* ObservableBuffer class should be accessed directly.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @param buffer the buffer to decorate, must not be null
|
||||
* @param listener buffer listener, must not be null
|
||||
* @return the observed buffer
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/CollectionUtils.java,v 1.47 2003/11/18 22:50:44 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/CollectionUtils.java,v 1.48 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -85,7 +85,7 @@ import org.apache.commons.collections.observed.ObservableCollection;
|
||||
* Provides utility methods and decorators for {@link Collection} instances.
|
||||
*
|
||||
* @since Commons Collections 1.0
|
||||
* @version $Revision: 1.47 $ $Date: 2003/11/18 22:50:44 $
|
||||
* @version $Revision: 1.48 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Rodney Waldhoff
|
||||
* @author Paul Jack
|
||||
@ -1112,6 +1112,7 @@ public class CollectionUtils {
|
||||
* If more than one listener or other complex setup is required then the
|
||||
* ObservableCollection class should be accessed directly.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @param collection the collection to decorate, must not be null
|
||||
* @param listener collection listener, must not be null
|
||||
* @return the observed collection
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/ListUtils.java,v 1.22 2003/11/16 00:05:44 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/ListUtils.java,v 1.23 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -77,7 +77,7 @@ import org.apache.commons.collections.observed.ObservableList;
|
||||
* Provides utility methods and decorators for {@link List} instances.
|
||||
*
|
||||
* @since Commons Collections 1.0
|
||||
* @version $Revision: 1.22 $ $Date: 2003/11/16 00:05:44 $
|
||||
* @version $Revision: 1.23 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Federico Barbieri
|
||||
* @author Peter Donald
|
||||
@ -353,6 +353,7 @@ public class ListUtils {
|
||||
* If more than one listener or other complex setup is required then the
|
||||
* ObservableList class should be accessed directly.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @param list the list to decorate, must not be null
|
||||
* @param listener list listener, must not be null
|
||||
* @return the observed list
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/SetUtils.java,v 1.19 2003/11/16 00:05:44 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/SetUtils.java,v 1.20 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -84,7 +84,7 @@ import org.apache.commons.collections.set.UnmodifiableSortedSet;
|
||||
* {@link Set} and {@link SortedSet} instances.
|
||||
*
|
||||
* @since Commons Collections 2.1
|
||||
* @version $Revision: 1.19 $ $Date: 2003/11/16 00:05:44 $
|
||||
* @version $Revision: 1.20 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Paul Jack
|
||||
* @author Stephen Colebourne
|
||||
@ -271,6 +271,7 @@ public class SetUtils {
|
||||
* If more than one listener or other complex setup is required then the
|
||||
* ObservableSet class should be accessed directly.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @param set the set to decorate, must not be null
|
||||
* @param listener set listener, must not be null
|
||||
* @return the observed set
|
||||
@ -391,6 +392,7 @@ public class SetUtils {
|
||||
* If more than one listener or other complex setup is required then the
|
||||
* ObservableSortedSet class should be accessed directly.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @param set the set to decorate, must not be null
|
||||
* @param listener set listener, must not be null
|
||||
* @return the observed set
|
||||
|
@ -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/ModificationEvent.java,v 1.3 2003/09/21 16:00:28 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ModificationEvent.java,v 1.4 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -65,8 +65,9 @@ import java.util.EventObject;
|
||||
* <p>
|
||||
* This class can be used as is, but generally it is subclassed.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/09/21 16:00:28 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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/ModificationEventType.java,v 1.3 2003/09/07 16:50:59 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ModificationEventType.java,v 1.4 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -73,8 +73,9 @@ package org.apache.commons.collections.observed;
|
||||
* They may combined using the bitwise OR, <code>|</code>.
|
||||
* They may negated using the bitwise NOT, <code>~</code>.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/09/07 16:50:59 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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/ModificationHandler.java,v 1.8 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/ModificationHandler.java,v 1.9 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -75,8 +75,9 @@ import java.util.Collection;
|
||||
* that if you subclass this class, you must check it when you upgrade to a
|
||||
* later collections release.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.8 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.9 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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/ModificationHandlerFactory.java,v 1.2 2003/09/21 16:00:28 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ModificationHandlerFactory.java,v 1.3 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -70,8 +70,9 @@ import java.util.Collection;
|
||||
* <li>One of the <code>registerFactory</code> methods must be called on ObservableCollection
|
||||
* </ol>
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/09/21 16:00:28 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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/ModificationListener.java,v 1.1 2003/09/03 23:54:26 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ModificationListener.java,v 1.2 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -65,8 +65,9 @@ import java.util.EventListener;
|
||||
* This interface exists to mark independent subclasses as fulfilling the
|
||||
* role of an event listener for collection modification events.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.1 $ $Date: 2003/09/03 23:54:26 $
|
||||
* @version $Revision: 1.2 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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/ModificationVetoedException.java,v 1.1 2003/09/03 23:54:26 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ModificationVetoedException.java,v 1.2 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -61,8 +61,9 @@ package org.apache.commons.collections.observed;
|
||||
* Exception thrown when a modification to a collection is vetoed.
|
||||
* It extends IllegalArgumentException for compatibility with the collections API.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.1 $ $Date: 2003/09/03 23:54:26 $
|
||||
* @version $Revision: 1.2 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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.3 2003/10/13 21:18:56 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.4 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -74,8 +74,9 @@ import org.apache.commons.collections.Bag;
|
||||
* NOTE: The {@link #uniqueSet()} method returns a <code>Set</code> that is
|
||||
* NOT observed. This is because the set should be unmodifiable.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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.3 2003/10/13 21:18:56 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.4 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -69,8 +69,9 @@ import org.apache.commons.collections.Buffer;
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler StandardModificationHandler}.
|
||||
* See this class for details of configuration available.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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/ObservableCollection.java,v 1.3 2003/11/16 00:05:47 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/Attic/ObservableCollection.java,v 1.4 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -73,8 +73,9 @@ import org.apache.commons.collections.observed.standard.StandardModificationHand
|
||||
* The default handler is {@link StandardModificationHandler}.
|
||||
* See this class for details of configuration available.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/11/16 00:05:47 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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.4 2003/11/16 00:05:47 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.5 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -76,8 +76,9 @@ import org.apache.commons.collections.iterators.AbstractListIteratorDecorator;
|
||||
* All indices on events returned by <code>subList</code> are relative to the
|
||||
* base <code>List</code>.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/16 00:05:47 $
|
||||
* @version $Revision: 1.5 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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.3 2003/10/13 21:18:56 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.4 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -69,8 +69,9 @@ import java.util.Set;
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler}.
|
||||
* See this class for details of configuration available.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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.3 2003/10/13 21:18:56 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.4 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -71,8 +71,9 @@ import org.apache.commons.collections.SortedBag;
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler StandardModificationHandler}.
|
||||
* See this class for details of configuration available.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.3 $ $Date: 2003/10/13 21:18:56 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -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.4 2003/10/13 21:18:56 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.5 2003/11/27 22:55:15 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -70,8 +70,9 @@ import java.util.SortedSet;
|
||||
* {@link org.apache.commons.collections.observed.standard.StandardModificationHandler StandardModificationHandler}.
|
||||
* See this class for details of configuration available.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.4 $ $Date: 2003/10/13 21:18:56 $
|
||||
* @version $Revision: 1.5 $ $Date: 2003/11/27 22:55:15 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardModificationEvent.java,v 1.7 2003/09/21 20:00:29 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardModificationEvent.java,v 1.8 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -79,8 +79,9 @@ import org.apache.commons.collections.observed.ObservableCollection;
|
||||
* In addition, the <code>size</code> method is used on the collection.
|
||||
* All objects used are the real objects from the method calls, not clones.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.7 $ $Date: 2003/09/21 20:00:29 $
|
||||
* @version $Revision: 1.8 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardModificationHandler.java,v 1.7 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/standard/Attic/StandardModificationHandler.java,v 1.8 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -76,8 +76,9 @@ import org.apache.commons.collections.observed.ObservableCollection;
|
||||
* Each listener can be filtered. There are separate filters for pre and post
|
||||
* modification events.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.7 $ $Date: 2003/10/09 20:50:04 $
|
||||
* @version $Revision: 1.8 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardModificationListener.java,v 1.1 2003/09/03 23:54:26 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardModificationListener.java,v 1.2 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -61,8 +61,9 @@ package org.apache.commons.collections.observed.standard;
|
||||
* A listener for the <code>StandardModificationHandler</code> that is called
|
||||
* both before the collection is changed and after the change has occurred.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.1 $ $Date: 2003/09/03 23:54:26 $
|
||||
* @version $Revision: 1.2 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPostModificationEvent.java,v 1.5 2003/09/21 20:00:29 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPostModificationEvent.java,v 1.6 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -69,8 +69,9 @@ import org.apache.commons.collections.observed.ObservableCollection;
|
||||
* In addition, the <code>size</code> method is used on the collection.
|
||||
* All objects used are the real objects from the method calls, not clones.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.5 $ $Date: 2003/09/21 20:00:29 $
|
||||
* @version $Revision: 1.6 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPostModificationListener.java,v 1.2 2003/09/06 18:59:09 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPostModificationListener.java,v 1.3 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -63,8 +63,9 @@ import org.apache.commons.collections.observed.ModificationListener;
|
||||
* A listener for the <code>StandardModificationHandler</code> that is called
|
||||
* when a collection has been changed.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/09/06 18:59:09 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPreModificationEvent.java,v 1.5 2003/09/21 20:00:29 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPreModificationEvent.java,v 1.6 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -69,8 +69,9 @@ import org.apache.commons.collections.observed.ObservableCollection;
|
||||
* In addition, the <code>size</code> method is used on the collection.
|
||||
* All objects used are the real objects from the method calls, not clones.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.5 $ $Date: 2003/09/21 20:00:29 $
|
||||
* @version $Revision: 1.6 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPreModificationListener.java,v 1.2 2003/09/06 18:59:09 scolebourne Exp $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/observed/standard/Attic/StandardPreModificationListener.java,v 1.3 2003/11/27 22:55:16 scolebourne Exp $
|
||||
* ====================================================================
|
||||
*
|
||||
* The Apache Software License, Version 1.1
|
||||
@ -63,8 +63,9 @@ import org.apache.commons.collections.observed.ModificationListener;
|
||||
* A listener for the <code>StandardModificationHandler</code> that is called
|
||||
* when a collection is about to be modified.
|
||||
*
|
||||
* @deprecated TO BE REMOVED BEFORE v3.0
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision: 1.2 $ $Date: 2003/09/06 18:59:09 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/11/27 22:55:16 $
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user