Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 046BCDC14 for ; Sun, 15 Jul 2012 11:46:51 +0000 (UTC) Received: (qmail 91191 invoked by uid 500); 15 Jul 2012 11:46:50 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 91121 invoked by uid 500); 15 Jul 2012 11:46:50 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 91103 invoked by uid 99); 15 Jul 2012 11:46:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Jul 2012 11:46:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Jul 2012 11:46:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8A46E23888FE for ; Sun, 15 Jul 2012 11:46:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1361689 [2/4] - in /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections: ./ bag/ bidimap/ buffer/ collection/ comparators/ functors/ iterators/ keyvalue/ list/ map/ set/ splitmap/ Date: Sun, 15 Jul 2012 11:46:04 -0000 To: commits@commons.apache.org From: tn@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120715114617.8A46E23888FE@eris.apache.org> Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableBag.java Sun Jul 15 11:45:57 2012 @@ -36,7 +36,7 @@ import org.apache.commons.collections.se *

* Attempts to modify it will result in an UnsupportedOperationException. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableBag Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bag/UnmodifiableSortedBag.java Sun Jul 15 11:45:57 2012 @@ -36,7 +36,7 @@ import org.apache.commons.collections.se *

* Attempts to modify it will result in an UnsupportedOperationException. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableSortedBag Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractBidiMapDecorator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractBidiMapDecorator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractBidiMapDecorator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractBidiMapDecorator.java Sun Jul 15 11:45:57 2012 @@ -32,7 +32,7 @@ import org.apache.commons.collections.ma * it would provide a loophole around the validation. * But, you might want that loophole, so this class is kept simple. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public abstract class AbstractBidiMapDecorator Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractDualBidiMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractDualBidiMap.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractDualBidiMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractDualBidiMap.java Sun Jul 15 11:45:57 2012 @@ -36,7 +36,7 @@ import org.apache.commons.collections.ke * * @see DualHashBidiMap * @see DualTreeBidiMap - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public abstract class AbstractDualBidiMap implements BidiMap { @@ -94,7 +94,7 @@ public abstract class AbstractDualBidiMa * * @param normalMap the normal direction map * @param reverseMap the reverse direction map - * @since Commons Collections 3.1 + * @since 3.1 */ protected AbstractDualBidiMap(Map normalMap, Map reverseMap) { super(); Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractOrderedBidiMapDecorator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractOrderedBidiMapDecorator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractOrderedBidiMapDecorator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractOrderedBidiMapDecorator.java Sun Jul 15 11:45:57 2012 @@ -31,7 +31,7 @@ import org.apache.commons.collections.Or * it would provide a loophole around the validation. * But, you might want that loophole, so this class is kept simple. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public abstract class AbstractOrderedBidiMapDecorator Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractSortedBidiMapDecorator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractSortedBidiMapDecorator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractSortedBidiMapDecorator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/AbstractSortedBidiMapDecorator.java Sun Jul 15 11:45:57 2012 @@ -33,7 +33,7 @@ import org.apache.commons.collections.So * it would provide a loophole around the validation. * But, you might want that loophole, so this class is kept simple. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public abstract class AbstractSortedBidiMapDecorator Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualHashBidiMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualHashBidiMap.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualHashBidiMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualHashBidiMap.java Sun Jul 15 11:45:57 2012 @@ -36,7 +36,7 @@ import org.apache.commons.collections.Bi * NOTE: From Commons Collections 3.1, all subclasses will use {@link HashMap} * and the flawed createMap method is ignored. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class DualHashBidiMap extends AbstractDualBidiMap implements Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualTreeBidiMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualTreeBidiMap.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualTreeBidiMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/DualTreeBidiMap.java Sun Jul 15 11:45:57 2012 @@ -49,7 +49,7 @@ import org.apache.commons.collections.ma * NOTE: From Commons Collections 3.1, all subclasses will use {@link TreeMap} * and the flawed createMap method is ignored. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class DualTreeBidiMap extends AbstractDualBidiMap Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/TreeBidiMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/TreeBidiMap.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/TreeBidiMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/TreeBidiMap.java Sun Jul 15 11:45:57 2012 @@ -69,7 +69,7 @@ import static org.apache.commons.collect * not allow setValue() and will throw an * UnsupportedOperationException on attempts to call that method. * - * @since Commons Collections 3.0 (previously DoubleOrderedMap v2.0) + * @since 3.0 (previously DoubleOrderedMap v2.0) * @version $Id$ */ public class TreeBidiMap, V extends Comparable> implements OrderedBidiMap { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableBidiMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableBidiMap.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableBidiMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableBidiMap.java Sun Jul 15 11:45:57 2012 @@ -33,7 +33,7 @@ import org.apache.commons.collections.se *

* Attempts to modify it will result in an UnsupportedOperationException. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableBidiMap Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableOrderedBidiMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableOrderedBidiMap.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableOrderedBidiMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableOrderedBidiMap.java Sun Jul 15 11:45:57 2012 @@ -33,7 +33,7 @@ import org.apache.commons.collections.se *

* Attempts to modify it will result in an UnsupportedOperationException. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableOrderedBidiMap Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableSortedBidiMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableSortedBidiMap.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableSortedBidiMap.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/bidimap/UnmodifiableSortedBidiMap.java Sun Jul 15 11:45:57 2012 @@ -35,7 +35,7 @@ import org.apache.commons.collections.se *

* Attempts to modify it will result in an {@link UnsupportedOperationException}. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableSortedBidiMap Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/AbstractBufferDecorator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/AbstractBufferDecorator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/AbstractBufferDecorator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/AbstractBufferDecorator.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.co * Methods are forwarded directly to the decorated buffer. * * @param the type of the elements in the buffer - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public abstract class AbstractBufferDecorator extends AbstractCollectionDecorator @@ -36,7 +36,7 @@ public abstract class AbstractBufferDeco /** * Constructor only used in deserialization, do not use otherwise. - * @since Commons Collections 3.1 + * @since 3.1 */ protected AbstractBufferDecorator() { super(); Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BlockingBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BlockingBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BlockingBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BlockingBuffer.java Sun Jul 15 11:45:57 2012 @@ -43,7 +43,7 @@ import org.apache.commons.collections.Bu * * @param the type of the elements in the buffer * @version $Revision$ - * @since Commons Collections 3.0 + * @since 3.0 */ public class BlockingBuffer extends SynchronizedBuffer { @@ -72,7 +72,7 @@ public class BlockingBuffer extends S * @param timeoutMillis the timeout value in milliseconds, zero or less for no timeout * @return a new blocking buffer * @throws IllegalArgumentException if the buffer is null - * @since Commons Collections 3.2 + * @since 3.2 */ public static BlockingBuffer blockingBuffer(Buffer buffer, long timeoutMillis) { return new BlockingBuffer(buffer, timeoutMillis); @@ -96,7 +96,7 @@ public class BlockingBuffer extends S * @param buffer the buffer to decorate, must not be null * @param timeoutMillis the timeout value in milliseconds, zero or less for no timeout * @throws IllegalArgumentException if the buffer is null - * @since Commons Collections 3.2 + * @since 3.2 */ protected BlockingBuffer(Buffer buffer, long timeoutMillis) { super(buffer); @@ -158,7 +158,7 @@ public class BlockingBuffer extends S * @return the next object in the buffer * @throws BufferUnderflowException if an interrupt is received * @throws BufferUnderflowException if the timeout expires - * @since Commons Collections 3.2 + * @since 3.2 */ public E get(final long timeout) { synchronized (lock) { @@ -217,7 +217,7 @@ public class BlockingBuffer extends S * @return the next object in the buffer, which is also removed * @throws BufferUnderflowException if an interrupt is received * @throws BufferUnderflowException if the timeout expires - * @since Commons Collections 3.2 + * @since 3.2 */ public E remove(final long timeout) { synchronized (lock) { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java Sun Jul 15 11:45:57 2012 @@ -40,7 +40,7 @@ import org.apache.commons.collections.it * With a timeout, the add methods will wait for up to the timeout period * to try and add the elements. * - * @since Commons Collections 3.2 + * @since 3.2 * @version $Id$ */ public class BoundedBuffer extends SynchronizedBuffer implements BoundedCollection { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedFifoBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedFifoBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedFifoBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedFifoBuffer.java Sun Jul 15 11:45:57 2012 @@ -53,7 +53,7 @@ import org.apache.commons.collections.Bu *

* This class is Serializable from Commons Collections 3.1. * - * @since Commons Collections 3.0 (previously in main package v2.1) + * @since 3.0 (previously in main package v2.1) * @version $Id$ */ public class BoundedFifoBuffer extends AbstractCollection Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/CircularFifoBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/CircularFifoBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/CircularFifoBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/CircularFifoBuffer.java Sun Jul 15 11:45:57 2012 @@ -40,7 +40,7 @@ import java.util.Collection; *

* This class is Serializable from Commons Collections 3.1. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class CircularFifoBuffer extends BoundedFifoBuffer { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java Sun Jul 15 11:45:57 2012 @@ -33,7 +33,7 @@ import org.apache.commons.collections.co *

* This class is Serializable from Commons Collections 3.1. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class PredicatedBuffer extends PredicatedCollection implements Buffer { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PriorityBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PriorityBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PriorityBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PriorityBuffer.java Sun Jul 15 11:45:57 2012 @@ -53,7 +53,7 @@ import org.apache.commons.collections.co *

* This class is Serializable from Commons Collections 3.2. * - * @since Commons Collections 3.0 (previously BinaryHeap v1.0) + * @since 3.0 (previously BinaryHeap v1.0) * @version $Id$ */ public class PriorityBuffer extends AbstractCollection implements Buffer, Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/SynchronizedBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/SynchronizedBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/SynchronizedBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/SynchronizedBuffer.java Sun Jul 15 11:45:57 2012 @@ -28,7 +28,7 @@ import org.apache.commons.collections.co * This class is Serializable from Commons Collections 3.1. * * @param the type of the elements in the buffer - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class SynchronizedBuffer Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/TransformedBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/TransformedBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/TransformedBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/TransformedBuffer.java Sun Jul 15 11:45:57 2012 @@ -30,7 +30,7 @@ import org.apache.commons.collections.co *

* This class is Serializable from Commons Collections 3.1. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class TransformedBuffer extends TransformedCollection implements Buffer { @@ -69,7 +69,7 @@ public class TransformedBuffer extend * @param transformer the transformer to use for conversion, must not be null * @return a new transformed Buffer * @throws IllegalArgumentException if buffer or transformer is null - * @since Commons Collections 3.3 + * @since 3.3 */ public static TransformedBuffer transformedBuffer(Buffer buffer, Transformer transformer) { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnboundedFifoBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnboundedFifoBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnboundedFifoBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnboundedFifoBuffer.java Sun Jul 15 11:45:57 2012 @@ -51,7 +51,7 @@ import org.apache.commons.collections.Bu *

* This class is Serializable from Commons Collections 3.1. * - * @since Commons Collections 3.0 (previously in main package v2.1) + * @since 3.0 (previously in main package v2.1) * @version $Id$ */ public class UnboundedFifoBuffer extends AbstractCollection implements Buffer, Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnmodifiableBuffer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnmodifiableBuffer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnmodifiableBuffer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/UnmodifiableBuffer.java Sun Jul 15 11:45:57 2012 @@ -34,7 +34,7 @@ import org.apache.commons.collections.it *

* Attempts to modify it will result in an UnsupportedOperationException. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableBuffer Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractCollectionDecorator.java Sun Jul 15 11:45:57 2012 @@ -36,7 +36,7 @@ import java.util.Iterator; * to write an unmodifiable implementation it might provide a loophole. * * @param the type of the elements in the collection - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public abstract class AbstractCollectionDecorator @@ -50,7 +50,7 @@ public abstract class AbstractCollection /** * Constructor only used in deserialization, do not use otherwise. - * @since Commons Collections 3.1 + * @since 3.1 */ protected AbstractCollectionDecorator() { super(); Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/AbstractUntypedCollectionDecorator.java Sun Jul 15 11:45:57 2012 @@ -38,7 +38,7 @@ import java.util.Collection; * * @param the type of the elements in the decorated collection * @param the element type of the Collection implementation - * @since Commons Collections 4.0 + * @since 4.0 * @version $Id$ */ public abstract class AbstractUntypedCollectionDecorator implements Collection, Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/CompositeCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/CompositeCollection.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/CompositeCollection.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/CompositeCollection.java Sun Jul 15 11:45:57 2012 @@ -36,7 +36,7 @@ import org.apache.commons.collections.li * strategy is provided then add and remove are unsupported. * * @param the type of the elements in the collection - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class CompositeCollection implements Collection, Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/PredicatedCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/PredicatedCollection.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/PredicatedCollection.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/PredicatedCollection.java Sun Jul 15 11:45:57 2012 @@ -34,7 +34,7 @@ import org.apache.commons.collections.Pr * This class is Serializable from Commons Collections 3.1. * * @param the type of the elements in the collection - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class PredicatedCollection extends AbstractCollectionDecorator { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/SynchronizedCollection.java Sun Jul 15 11:45:57 2012 @@ -35,7 +35,7 @@ import java.util.Iterator; * This class is Serializable from Commons Collections 3.1. * * @param the type of the elements in the collection - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class SynchronizedCollection implements Collection, Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/TransformedCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/TransformedCollection.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/TransformedCollection.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/TransformedCollection.java Sun Jul 15 11:45:57 2012 @@ -33,7 +33,7 @@ import org.apache.commons.collections.Tr * This class is Serializable from Commons Collections 3.1. * * @param the type of the elements in the collection - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class TransformedCollection extends AbstractCollectionDecorator { @@ -75,7 +75,7 @@ public class TransformedCollection ex * @param transformer the transformer to use for conversion, must not be null * @return a new transformed Collection * @throws IllegalArgumentException if collection or transformer is null - * @since Commons Collections 3.3 + * @since 3.3 */ public static TransformedCollection transformedCollection(Collection collection, Transformer transformer) { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableBoundedCollection.java Sun Jul 15 11:45:57 2012 @@ -36,7 +36,7 @@ import org.apache.commons.collections.it *

* Attempts to modify it will result in an UnsupportedOperationException. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableBoundedCollection extends AbstractCollectionDecorator Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableCollection.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableCollection.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableCollection.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/collection/UnmodifiableCollection.java Sun Jul 15 11:45:57 2012 @@ -30,7 +30,7 @@ import org.apache.commons.collections.it * Attempts to modify it will result in an UnsupportedOperationException. * * @param the type of the elements in the collection - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class UnmodifiableCollection Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/BooleanComparator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/BooleanComparator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/BooleanComparator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/BooleanComparator.java Sun Jul 15 11:45:57 2012 @@ -27,7 +27,7 @@ import java.util.Comparator; * @see #getFalseFirstComparator() * @see #booleanComparator(boolean) * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public final class BooleanComparator implements Comparator, Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ComparableComparator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ComparableComparator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ComparableComparator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ComparableComparator.java Sun Jul 15 11:45:57 2012 @@ -34,7 +34,7 @@ import java.util.Comparator; * This is no longer the case. See {@link #compare(Object, Object) compare} for * details. * - * @since Commons Collections 2.0 + * @since 2.0 * @version $Id$ * * @see java.util.Collections#reverseOrder() @@ -98,7 +98,7 @@ public class ComparableComparatoris thread-safe to perform * multiple comparisons after all the setup operations are complete. * - * @since Commons Collections 2.0 + * @since 2.0 * @version $Id$ */ public class ComparatorChain implements Comparator, Serializable { @@ -300,7 +300,7 @@ public class ComparatorChain implemen * {@link #equals(Object) equals}. * * @return a suitable hash code - * @since Commons Collections 3.0 + * @since 3.0 */ @Override public int hashCode() { @@ -328,7 +328,7 @@ public class ComparatorChain implemen * * @param object the object to compare with * @return true if equal - * @since Commons Collections 3.0 + * @since 3.0 */ @Override public boolean equals(Object object) { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/FixedOrderComparator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/FixedOrderComparator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/FixedOrderComparator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/FixedOrderComparator.java Sun Jul 15 11:45:57 2012 @@ -40,14 +40,14 @@ import java.util.Map; * thread-safe at construction time, but it is thread-safe to perform * multiple comparisons after all the setup operations are complete. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Id$ */ public class FixedOrderComparator implements Comparator { /** * Unknown object behavior enum. - * @since Commons Collections 4.0 + * @since 4.0 */ public static enum UnknownObjectBehavior { BEFORE, AFTER, EXCEPTION; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/NullComparator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/NullComparator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/NullComparator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/NullComparator.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.Co * A Comparator that will compare nulls to be either lower or higher than * other objects. * - * @since Commons Collections 2.0 + * @since 2.0 * @version $Id$ */ public class NullComparator implements Comparator, Serializable { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ReverseComparator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ReverseComparator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ReverseComparator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/ReverseComparator.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.Co * Reverses the order of another comparator by reversing the arguments * to its {@link #compare(Object, Object) compare} method. * - * @since Commons Collections 2.0 + * @since 2.0 * @version $Id$ * * @see java.util.Collections#reverseOrder() @@ -83,7 +83,7 @@ public class ReverseComparator implem * {@link #equals(Object) equals}. * * @return a suitable hash code - * @since Commons Collections 3.0 + * @since 3.0 */ @Override public int hashCode() { @@ -104,7 +104,7 @@ public class ReverseComparator implem * * @param object the object to compare to * @return true if equal - * @since Commons Collections 3.0 + * @since 3.0 */ @Override public boolean equals(Object object) { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/TransformingComparator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/TransformingComparator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/TransformingComparator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/comparators/TransformingComparator.java Sun Jul 15 11:45:57 2012 @@ -26,7 +26,7 @@ import org.apache.commons.collections.Tr * return value from the transform operation will be passed to the decorated * {@link Comparator#compare(Object,Object) compare} method. * - * @since Commons Collections 2.1 + * @since 2.1 * @version $Id$ * * @see org.apache.commons.collections.Transformer Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AllPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AllPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AllPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AllPredicate.java Sun Jul 15 11:45:57 2012 @@ -33,7 +33,7 @@ import org.apache.commons.collections.Pr * NOTE: In versions prior to 3.2 an array size of zero or one * threw an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -123,7 +123,7 @@ public final class AllPredicate imple * Gets the predicates, do not modify the array. * * @return the predicates - * @since Commons Collections 3.1 + * @since 3.1 */ public Predicate[] getPredicates() { return iPredicates; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AndPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AndPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AndPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AndPredicate.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that returns true if both the predicates return true. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -80,7 +80,7 @@ public final class AndPredicate imple * Gets the two predicates being decorated as an array. * * @return the predicates - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public Predicate[] getPredicates() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AnyPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AnyPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AnyPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/AnyPredicate.java Sun Jul 15 11:45:57 2012 @@ -29,7 +29,7 @@ import org.apache.commons.collections.Pr * NOTE: In versions prior to 3.2 an array size of zero or one * threw an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -119,7 +119,7 @@ public final class AnyPredicate imple * Gets the predicates, do not modify the array. * * @return the predicates - * @since Commons Collections 3.1 + * @since 3.1 */ public Predicate[] getPredicates() { return iPredicates; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CatchAndRethrowClosure.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CatchAndRethrowClosure.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CatchAndRethrowClosure.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CatchAndRethrowClosure.java Sun Jul 15 11:45:57 2012 @@ -43,7 +43,7 @@ import org.apache.commons.collections.Fu * } * * - * @since Commons Collections 4.0 + * @since 4.0 * @version $Revision$ */ public abstract class CatchAndRethrowClosure implements Closure { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedClosure.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedClosure.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedClosure.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedClosure.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Cl /** * Closure implementation that chains the specified closures together. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -106,7 +106,7 @@ public class ChainedClosure implement /** * Gets the closures, do not modify the array. * @return the closures - * @since Commons Collections 3.1 + * @since 3.1 */ public Closure[] getClosures() { return iClosures; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ChainedTransformer.java Sun Jul 15 11:45:57 2012 @@ -27,7 +27,7 @@ import org.apache.commons.collections.Tr * The input object is passed to the first transformer. The transformed result * is passed to the second transformer and so on. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -107,7 +107,7 @@ public class ChainedTransformer imple /** * Gets the transformers, do not modify the array. * @return the transformers - * @since Commons Collections 3.1 + * @since 3.1 */ public Transformer[] getTransformers() { return iTransformers; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CloneTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CloneTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CloneTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/CloneTransformer.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.Tr *

* Clone is performed using PrototypeFactory.getInstance(input).create(). * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -42,7 +42,7 @@ public class CloneTransformer impleme * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Transformer cloneTransformer() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ClosureTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ClosureTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ClosureTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ClosureTransformer.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.Tr * Transformer implementation that calls a Closure using the input object * and then returns the input. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -78,7 +78,7 @@ public class ClosureTransformer imple * Gets the closure. * * @return the closure - * @since Commons Collections 3.1 + * @since 3.1 */ public Closure getClosure() { return iClosure; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ComparatorPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ComparatorPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ComparatorPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ComparatorPredicate.java Sun Jul 15 11:45:57 2012 @@ -73,7 +73,7 @@ import org.apache.commons.collections.Pr * using the GREATER evaluation criterion constant. This instructs the predicate to * return true if the comparator returns a value greater than 0. * - * @since Commons Collections 4.0 + * @since 4.0 * @version $Revision$ * * @author Rune Peter Bjørnstad. Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantFactory.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantFactory.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantFactory.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantFactory.java Sun Jul 15 11:45:57 2012 @@ -27,7 +27,7 @@ import org.apache.commons.collections.Fa * objects should use the constant factory. Mutable objects should * use the prototype factory. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -81,7 +81,7 @@ public class ConstantFactory implemen * Gets the constant. * * @return the constant - * @since Commons Collections 3.1 + * @since 3.1 */ public T getConstant() { return iConstant; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ConstantTransformer.java Sun Jul 15 11:45:57 2012 @@ -27,7 +27,7 @@ import org.apache.commons.collections.Tr * objects should use the constant factory. Mutable objects should * use the prototype factory. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -92,7 +92,7 @@ public class ConstantTransformer i * Gets the constant. * * @return the constant - * @since Commons Collections 3.1 + * @since 3.1 */ public O getConstant() { return iConstant; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/DefaultEquator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/DefaultEquator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/DefaultEquator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/DefaultEquator.java Sun Jul 15 11:45:57 2012 @@ -20,7 +20,7 @@ package org.apache.commons.collections.f * Default {@link Equator} implementation. * * @param - * @since Commons Collections 4.0 + * @since 4.0 * @version $Revision$ */ public class DefaultEquator implements Equator { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/EqualPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/EqualPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/EqualPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/EqualPredicate.java Sun Jul 15 11:45:57 2012 @@ -26,7 +26,7 @@ import org.apache.commons.collections.Pr * Predicate implementation that returns true if the input is the same object * as the one stored in this predicate by equals. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -78,7 +78,7 @@ public final class EqualPredicate imp * Gets the value. * * @return the value - * @since Commons Collections 3.1 + * @since 3.1 */ public Object getValue() { return iValue; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/Equator.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/Equator.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/Equator.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/Equator.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.ma * * @param the types of object this {@link Equator} can evaluate. * @author Stephen Kestle - * @since Commons Collections 4.0 + * @since 4.0 * @version $Revision$ */ public interface Equator { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionClosure.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionClosure.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionClosure.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionClosure.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Fu /** * Closure implementation that always throws an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -41,7 +41,7 @@ public final class ExceptionClosure i * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Closure exceptionClosure() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionFactory.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionFactory.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionFactory.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionFactory.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Fu /** * Factory implementation that always throws an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -41,7 +41,7 @@ public final class ExceptionFactory i * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Factory exceptionFactory() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionPredicate.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that always throws an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -41,7 +41,7 @@ public final class ExceptionPredicate * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Predicate exceptionPredicate() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ExceptionTransformer.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Tr /** * Transformer implementation that always throws an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -41,7 +41,7 @@ public final class ExceptionTransformer< * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Transformer exceptionTransformer() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FactoryTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FactoryTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FactoryTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FactoryTransformer.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Tr /** * Transformer implementation that calls a Factory and returns the result. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -77,7 +77,7 @@ public class FactoryTransformer im * Gets the factory. * * @return the factory - * @since Commons Collections 3.1 + * @since 3.1 */ public Factory getFactory() { return iFactory; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FalsePredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FalsePredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FalsePredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FalsePredicate.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that always returns false. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -40,7 +40,7 @@ public final class FalsePredicate imp * Get a typed instance. * * @return the singleton instance - * @since Commons Collections 4.0 + * @since 4.0 */ @SuppressWarnings("unchecked") public static Predicate falsePredicate() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ForClosure.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ForClosure.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ForClosure.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/ForClosure.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Cl /** * Closure implementation that calls another closure n times, like a for loop. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -87,7 +87,7 @@ public class ForClosure implements Cl * Gets the closure. * * @return the closure - * @since Commons Collections 3.1 + * @since 3.1 */ public Closure getClosure() { return iClosure; @@ -97,7 +97,7 @@ public class ForClosure implements Cl * Gets the count. * * @return the count - * @since Commons Collections 3.1 + * @since 3.1 */ public int getCount() { return iCount; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FunctorUtils.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FunctorUtils.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FunctorUtils.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/FunctorUtils.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.Tr /** * Internal utilities for functors. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IdentityPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IdentityPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IdentityPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IdentityPredicate.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Pr * Predicate implementation that returns true if the input is the same object * as the one stored in this predicate. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -77,7 +77,7 @@ public final class IdentityPredicate * Gets the value. * * @return the value - * @since Commons Collections 3.1 + * @since 3.1 */ public T getValue() { return iValue; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IfClosure.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IfClosure.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IfClosure.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/IfClosure.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.Pr * Closure implementation acts as an if statement calling one or other closure * based on a predicate. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -53,7 +53,7 @@ public class IfClosure implements Clo * @param trueClosure closure used if true * @return the if closure * @throws IllegalArgumentException if either argument is null - * @since Commons Collections 3.2 + * @since 3.2 */ public static Closure ifClosure(Predicate predicate, Closure trueClosure) { return IfClosure.ifClosure(predicate, trueClosure, NOPClosure.nopClosure()); @@ -87,7 +87,7 @@ public class IfClosure implements Clo * * @param predicate predicate to switch on, not null * @param trueClosure closure used if true, not null - * @since Commons Collections 3.2 + * @since 3.2 */ public IfClosure(Predicate predicate, Closure trueClosure) { this(predicate, trueClosure, NOPClosure.INSTANCE); @@ -125,7 +125,7 @@ public class IfClosure implements Clo * Gets the predicate. * * @return the predicate - * @since Commons Collections 3.1 + * @since 3.1 */ public Predicate getPredicate() { return iPredicate; @@ -135,7 +135,7 @@ public class IfClosure implements Clo * Gets the closure called when true. * * @return the closure - * @since Commons Collections 3.1 + * @since 3.1 */ public Closure getTrueClosure() { return iTrueClosure; @@ -145,7 +145,7 @@ public class IfClosure implements Clo * Gets the closure called when false. * * @return the closure - * @since Commons Collections 3.1 + * @since 3.1 */ public Closure getFalseClosure() { return iFalseClosure; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstanceofPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstanceofPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstanceofPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstanceofPredicate.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Pr * Predicate implementation that returns true if the input is an instanceof * the type stored in this predicate. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -76,7 +76,7 @@ public final class InstanceofPredicate i * Gets the type to compare to. * * @return the type - * @since Commons Collections 3.1 + * @since 3.1 */ public Class getType() { return iType; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateFactory.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateFactory.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateFactory.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateFactory.java Sun Jul 15 11:45:57 2012 @@ -26,7 +26,7 @@ import org.apache.commons.collections.Fu /** * Factory implementation that creates a new object instance by reflection. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InstantiateTransformer.java Sun Jul 15 11:45:57 2012 @@ -26,7 +26,7 @@ import org.apache.commons.collections.Tr /** * Transformer implementation that creates a new object instance by reflection. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InvokerTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InvokerTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InvokerTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/InvokerTransformer.java Sun Jul 15 11:45:57 2012 @@ -26,7 +26,7 @@ import org.apache.commons.collections.Tr /** * Transformer implementation that creates a new object instance by reflection. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -48,7 +48,7 @@ public class InvokerTransformer im * * @param methodName the method name to call * @return an invoker transformer - * @since Commons Collections 3.1 + * @since 3.1 */ public static Transformer invokerTransformer(String methodName) { if (methodName == null) { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/MapTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/MapTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/MapTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/MapTransformer.java Sun Jul 15 11:45:57 2012 @@ -25,7 +25,7 @@ import org.apache.commons.collections.Tr * Transformer implementation that returns the value held in a specified map * using the input parameter as a key. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -78,7 +78,7 @@ public final class MapTransformer * Gets the map to lookup in. * * @return the map - * @since Commons Collections 3.1 + * @since 3.1 */ public Map getMap() { return iMap; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPClosure.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPClosure.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPClosure.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPClosure.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Cl /** * Closure implementation that does nothing. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -40,7 +40,7 @@ public final class NOPClosure impleme * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Closure nopClosure() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPTransformer.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPTransformer.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NOPTransformer.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Tr /** * Transformer implementation that does nothing. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -40,7 +40,7 @@ public class NOPTransformer implement * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Transformer nopTransformer() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NonePredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NonePredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NonePredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NonePredicate.java Sun Jul 15 11:45:57 2012 @@ -29,7 +29,7 @@ import org.apache.commons.collections.Pr * NOTE: In versions prior to 3.2 an array size of zero or one * threw an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -109,7 +109,7 @@ public final class NonePredicate impl * Gets the predicates, do not modify the array. * * @return the predicates - * @since Commons Collections 3.1 + * @since 3.1 */ public Predicate[] getPredicates() { return iPredicates; Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotNullPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotNullPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotNullPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotNullPredicate.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that returns true if the input is not null. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -40,7 +40,7 @@ public final class NotNullPredicate i * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Predicate notNullPredicate() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NotPredicate.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that returns the opposite of the decorated predicate. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -75,7 +75,7 @@ public final class NotPredicate imple * Gets the predicate being decorated. * * @return the predicate as the only element in an array - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public Predicate[] getPredicates() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsExceptionPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsExceptionPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsExceptionPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsExceptionPredicate.java Sun Jul 15 11:45:57 2012 @@ -24,7 +24,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that throws an exception if the input is null. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -81,7 +81,7 @@ public final class NullIsExceptionPredic * Gets the predicate being decorated. * * @return the predicate as the only element in an array - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public Predicate[] getPredicates() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsFalsePredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsFalsePredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsFalsePredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsFalsePredicate.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that returns false if the input is null. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -79,7 +79,7 @@ public final class NullIsFalsePredicate< * Gets the predicate being decorated. * * @return the predicate as the only element in an array - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public Predicate[] getPredicates() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsTruePredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsTruePredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsTruePredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullIsTruePredicate.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that returns true if the input is null. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -79,7 +79,7 @@ public final class NullIsTruePredicate[] getPredicates() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullPredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullPredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullPredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/NullPredicate.java Sun Jul 15 11:45:57 2012 @@ -23,7 +23,7 @@ import org.apache.commons.collections.Pr /** * Predicate implementation that returns true if the input is null. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -40,7 +40,7 @@ public final class NullPredicate impl * Factory returning the singleton instance. * * @return the singleton instance - * @since Commons Collections 3.1 + * @since 3.1 */ @SuppressWarnings("unchecked") public static Predicate nullPredicate() { Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/OnePredicate.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/OnePredicate.java?rev=1361689&r1=1361688&r2=1361689&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/OnePredicate.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/functors/OnePredicate.java Sun Jul 15 11:45:57 2012 @@ -29,7 +29,7 @@ import org.apache.commons.collections.Pr * NOTE: In versions prior to 3.2 an array size of zero or one * threw an exception. * - * @since Commons Collections 3.0 + * @since 3.0 * @version $Revision$ * * @author Stephen Colebourne @@ -114,7 +114,7 @@ public final class OnePredicate imple * Gets the predicates, do not modify the array. * * @return the predicates - * @since Commons Collections 3.1 + * @since 3.1 */ public Predicate[] getPredicates() { return iPredicates;