Add @since tags

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131615 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2004-03-31 23:13:04 +00:00
parent 2f9c5a0839
commit 8ffdacacc3
12 changed files with 24 additions and 12 deletions

View File

@ -25,7 +25,7 @@ import org.apache.commons.collections.Transformer;
* Clone is performed using <code>PrototypeFactory.getInstance(input).create()</code>.
*
* @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.5 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -41,6 +41,7 @@ public class CloneTransformer implements Transformer, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Transformer getInstance() {
return INSTANCE;

View File

@ -24,7 +24,7 @@ import org.apache.commons.collections.FunctorException;
* Closure implementation that always throws an exception.
*
* @since Commons Collections 3.0
* @version $Revision: 1.5 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.6 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -41,6 +41,7 @@ public final class ExceptionClosure implements Closure, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Closure getInstance() {
return INSTANCE;

View File

@ -24,7 +24,7 @@ import org.apache.commons.collections.FunctorException;
* Factory implementation that always throws an exception.
*
* @since Commons Collections 3.0
* @version $Revision: 1.5 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.6 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -41,6 +41,7 @@ public final class ExceptionFactory implements Factory, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Factory getInstance() {
return INSTANCE;

View File

@ -24,7 +24,7 @@ import org.apache.commons.collections.Predicate;
* Predicate implementation that always throws an exception.
*
* @since Commons Collections 3.0
* @version $Revision: 1.5 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.6 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -40,6 +40,7 @@ public final class ExceptionPredicate implements Predicate, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Predicate getInstance() {
return INSTANCE;

View File

@ -24,7 +24,7 @@ import org.apache.commons.collections.Transformer;
* Transformer implementation that always throws an exception.
*
* @since Commons Collections 3.0
* @version $Revision: 1.5 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.6 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -41,6 +41,7 @@ public final class ExceptionTransformer implements Transformer, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Transformer getInstance() {
return INSTANCE;

View File

@ -23,7 +23,7 @@ import org.apache.commons.collections.Predicate;
* Predicate implementation that always returns false.
*
* @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.5 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -39,6 +39,7 @@ public final class FalsePredicate implements Predicate, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Predicate getInstance() {
return INSTANCE;

View File

@ -23,7 +23,7 @@ import org.apache.commons.collections.Closure;
* Closure implementation that does nothing.
*
* @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.5 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -39,6 +39,7 @@ public class NOPClosure implements Closure, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Closure getInstance() {
return INSTANCE;

View File

@ -23,7 +23,7 @@ import org.apache.commons.collections.Transformer;
* Transformer implementation that does nothing.
*
* @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.5 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -39,6 +39,7 @@ public class NOPTransformer implements Transformer, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Transformer getInstance() {
return INSTANCE;

View File

@ -23,7 +23,7 @@ import org.apache.commons.collections.Predicate;
* Predicate implementation that returns true if the input is not null.
*
* @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.5 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -39,6 +39,7 @@ public final class NotNullPredicate implements Predicate, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Predicate getInstance() {
return INSTANCE;

View File

@ -23,7 +23,7 @@ import org.apache.commons.collections.Predicate;
* Predicate implementation that returns true if the input is null.
*
* @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.5 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -39,6 +39,7 @@ public final class NullPredicate implements Predicate, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Predicate getInstance() {
return INSTANCE;

View File

@ -23,7 +23,7 @@ import org.apache.commons.collections.Transformer;
* Transformer implementation that returns the <code>String.valueOf</code>.
*
* @since Commons Collections 3.0
* @version $Revision: 1.5 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.6 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -39,6 +39,7 @@ public final class StringValueTransformer implements Transformer, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Transformer getInstance() {
return INSTANCE;

View File

@ -23,7 +23,7 @@ import org.apache.commons.collections.Predicate;
* Predicate implementation that always returns true.
*
* @since Commons Collections 3.0
* @version $Revision: 1.4 $ $Date: 2004/03/31 22:06:11 $
* @version $Revision: 1.5 $ $Date: 2004/03/31 23:13:04 $
*
* @author Stephen Colebourne
*/
@ -39,6 +39,7 @@ public final class TruePredicate implements Predicate, Serializable {
* Factory returning the singleton instance.
*
* @return the singleton instance
* @since Commons Collections 3.1
*/
public static Predicate getInstance() {
return INSTANCE;