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 @@
* </pre>
*
* @author <a href="mailto:steve.downey@netfolio.com">Steve Downey</a>
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: CompareToBuilder.java,v 1.7 2002/12/08 21:43:34 scolebourne Exp $
* @author Stephen Colebourne
* @since 1.0
* @version $Id: CompareToBuilder.java,v 1.8 2002/12/23 00:20:31 scolebourne Exp $
*/
public class CompareToBuilder {

View File

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

View File

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

View File

@ -58,13 +58,14 @@
* to create a <code>toString</code>.</p>
*
* <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
* store the result in a public static final variable for the rest of the
* program to access.</p>
*
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: StandardToStringStyle.java,v 1.6 2002/12/08 20:45:08 scolebourne Exp $
* @author Stephen Colebourne
* @since 1.0
* @version $Id: StandardToStringStyle.java,v 1.7 2002/12/23 00:20:31 scolebourne Exp $
*/
public class StandardToStringStyle extends ToStringStyle {

View File

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

View File

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

View File

@ -114,8 +114,9 @@
* <em>NOTE:</em> This class originated in the Jakarta Avalon project.
* </p>
*
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: Enum.java,v 1.4 2002/11/02 13:16:30 scolebourne Exp $
* @author Stephen Colebourne
* @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 {
/**

View File

@ -62,8 +62,9 @@
*
* @see Enum
* @see ValuedEnum
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: EnumUtils.java,v 1.3 2002/09/28 10:49:59 scolebourne Exp $
* @author Stephen Colebourne
* @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 {

View File

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