Add since tags

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137208 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2002-12-23 00:20:31 +00:00
parent 010e0a3f2e
commit 8977d08016
9 changed files with 28 additions and 19 deletions

View File

@ -106,8 +106,9 @@ import org.apache.commons.lang.enum.Enum;
* </pre> * </pre>
* *
* @author <a href="mailto:steve.downey@netfolio.com">Steve Downey</a> * @author <a href="mailto:steve.downey@netfolio.com">Steve Downey</a>
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: CompareToBuilder.java,v 1.7 2002/12/08 21:43:34 scolebourne Exp $ * @since 1.0
* @version $Id: CompareToBuilder.java,v 1.8 2002/12/23 00:20:31 scolebourne Exp $
*/ */
public class CompareToBuilder { public class CompareToBuilder {

View File

@ -105,8 +105,9 @@ import java.lang.reflect.Modifier;
* </pre> * </pre>
* *
* @author <a href="mailto:steve.downey@netfolio.com">Steve Downey</a> * @author <a href="mailto:steve.downey@netfolio.com">Steve Downey</a>
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: EqualsBuilder.java,v 1.7 2002/12/08 21:10:42 scolebourne Exp $ * @since 1.0
* @version $Id: EqualsBuilder.java,v 1.8 2002/12/23 00:20:31 scolebourne Exp $
*/ */
public class EqualsBuilder { public class EqualsBuilder {
/** /**

View File

@ -105,8 +105,9 @@ import java.lang.reflect.Modifier;
* } * }
* </pre> * </pre>
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: HashCodeBuilder.java,v 1.6 2002/12/08 21:22:07 scolebourne Exp $ * @since 1.0
* @version $Id: HashCodeBuilder.java,v 1.7 2002/12/23 00:20:31 scolebourne Exp $
*/ */
public class HashCodeBuilder { public class HashCodeBuilder {

View File

@ -58,13 +58,14 @@ package org.apache.commons.lang.builder;
* to create a <code>toString</code>.</p> * to create a <code>toString</code>.</p>
* *
* <p>This class is intended to be used as a <code>Singleton</code>. There * <p>This class is intended to be used as a <code>Singleton</code>. There
* is no need * to instantiate a new style each time. Your code should * is no need to instantiate a new style each time. Your code should
* instantiate the class once, customize the values as required, and then * instantiate the class once, customize the values as required, and then
* store the result in a public static final variable for the rest of the * store the result in a public static final variable for the rest of the
* program to access.</p> * program to access.</p>
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: StandardToStringStyle.java,v 1.6 2002/12/08 20:45:08 scolebourne Exp $ * @since 1.0
* @version $Id: StandardToStringStyle.java,v 1.7 2002/12/23 00:20:31 scolebourne Exp $
*/ */
public class StandardToStringStyle extends ToStringStyle { public class StandardToStringStyle extends ToStringStyle {

View File

@ -110,8 +110,9 @@ import java.lang.reflect.Modifier;
* <p>The exact format of the <code>toString</code> is determined by * <p>The exact format of the <code>toString</code> is determined by
* the {@link ToStringStyle} passed into the constructor.</p> * the {@link ToStringStyle} passed into the constructor.</p>
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: ToStringBuilder.java,v 1.9 2002/12/08 20:45:08 scolebourne Exp $ * @since 1.0
* @version $Id: ToStringBuilder.java,v 1.10 2002/12/23 00:20:31 scolebourne Exp $
*/ */
public class ToStringBuilder { public class ToStringBuilder {

View File

@ -79,8 +79,9 @@ import org.apache.commons.lang.SystemUtils;
* output the whole array, whereas the summary method will just output * output the whole array, whereas the summary method will just output
* the array length.</p> * the array length.</p>
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: ToStringStyle.java,v 1.8 2002/12/08 20:45:08 scolebourne Exp $ * @since 1.0
* @version $Id: ToStringStyle.java,v 1.9 2002/12/23 00:20:31 scolebourne Exp $
*/ */
public abstract class ToStringStyle implements Serializable { public abstract class ToStringStyle implements Serializable {

View File

@ -114,8 +114,9 @@ import java.util.Map;
* <em>NOTE:</em> This class originated in the Jakarta Avalon project. * <em>NOTE:</em> This class originated in the Jakarta Avalon project.
* </p> * </p>
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: Enum.java,v 1.4 2002/11/02 13:16:30 scolebourne Exp $ * @since 1.0
* @version $Id: Enum.java,v 1.5 2002/12/23 00:17:06 scolebourne Exp $
*/ */
public abstract class Enum implements Comparable, Serializable { public abstract class Enum implements Comparable, Serializable {
/** /**

View File

@ -62,8 +62,9 @@ import java.util.Map;
* *
* @see Enum * @see Enum
* @see ValuedEnum * @see ValuedEnum
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: EnumUtils.java,v 1.3 2002/09/28 10:49:59 scolebourne Exp $ * @since 1.0
* @version $Id: EnumUtils.java,v 1.4 2002/12/23 00:17:06 scolebourne Exp $
*/ */
public abstract class EnumUtils implements Comparable, Serializable { public abstract class EnumUtils implements Comparable, Serializable {

View File

@ -128,8 +128,9 @@ import java.util.List;
* <em>NOTE:</em> This class originated in the Jakarta Avalon project. * <em>NOTE:</em> This class originated in the Jakarta Avalon project.
* </p> * </p>
* *
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @author Stephen Colebourne
* @version $Id: ValuedEnum.java,v 1.2 2002/11/14 21:52:14 scolebourne Exp $ * @since 1.0
* @version $Id: ValuedEnum.java,v 1.3 2002/12/23 00:17:06 scolebourne Exp $
*/ */
public abstract class ValuedEnum extends Enum { public abstract class ValuedEnum extends Enum {
/** /**