You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2003/08/16 14:41:23 UTC

cvs commit: jakarta-commons/lang/src/java/org/apache/commons/lang/builder package.html StandardToStringStyle.java

scolebourne    2003/08/16 05:41:23

  Modified:    lang/src/java/org/apache/commons/lang/builder package.html
                        StandardToStringStyle.java
  Log:
  Javadoc changes
  bug 22480, from Pete Gieser
  
  Revision  Changes    Path
  1.4       +3 -2      jakarta-commons/lang/src/java/org/apache/commons/lang/builder/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/builder/package.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- package.html	31 May 2003 17:16:11 -0000	1.3
  +++ package.html	16 Aug 2003 12:41:23 -0000	1.4
  @@ -1,6 +1,7 @@
   <html>
   <body>
  -Assists in creating good and consistent <code>equals()</code>, <code>toString()</code>, 
  -<code>hashCode()</code>, and <code>compareTo()</code> methods.
  +Assists in creating consistent <code>equals(Object)</code>, <code>toString()</code>,
  +<code>hashCode()</code>, and <code>compareTo(Object)</code> methods.
  +@since 1.0
   </body>
   </html>
  
  
  
  1.11      +4 -4      jakarta-commons/lang/src/java/org/apache/commons/lang/builder/StandardToStringStyle.java
  
  Index: StandardToStringStyle.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/builder/StandardToStringStyle.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- StandardToStringStyle.java	21 Jul 2003 23:30:42 -0000	1.10
  +++ StandardToStringStyle.java	16 Aug 2003 12:41:23 -0000	1.11
  @@ -57,9 +57,9 @@
    * <p><code>StandardToStringStyle</code> works with {@link ToStringBuilder}
    * 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
  - * instantiate the class once, customize the values as required, and then
  + * <p>This class is intended to be used as a singleton.
  + * There is no need to instantiate a new style each time.
  + * Simply instantiate the class once, customize the values as required, and
    * store the result in a public static final variable for the rest of the
    * program to access.</p>
    *