Author: ggregory
Date: Mon Jan  1 13:51:30 2007
New Revision: 491645

URL: http://svn.apache.org/viewvc?view=rev&rev=491645
Log:
Add missing Javadoc tags.

Modified:
    
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringBuilder.java

Modified: 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringBuilder.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringBuilder.java?view=diff&rev=491645&r1=491644&r2=491645
==============================================================================
--- 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringBuilder.java
 (original)
+++ 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/builder/ToStringBuilder.java
 Mon Jan  1 13:51:30 2007
@@ -118,6 +118,9 @@
     /**
      * <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
      * 
+     * @param object
+     *            the Object to be output
+     * @return the String result
      * @see ReflectionToStringBuilder#toString(Object)
      */
     public static String reflectionToString(Object object) {
@@ -127,6 +130,11 @@
     /**
      * <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
      * 
+     * @param object
+     *            the Object to be output
+     * @param style
+     *            the style of the <code>toString</code> to create, may be 
<code>null</code>
+     * @return the String result
      * @see ReflectionToStringBuilder#toString(Object,ToStringStyle)
      */
     public static String reflectionToString(Object object, ToStringStyle 
style) {
@@ -136,6 +144,13 @@
     /**
      * <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
      * 
+     * @param object
+     *            the Object to be output
+     * @param style
+     *            the style of the <code>toString</code> to create, may be 
<code>null</code>
+     * @param outputTransients
+     *            whether to include transient fields
+     * @return the String result
      * @see ReflectionToStringBuilder#toString(Object,ToStringStyle,boolean)
      */
     public static String reflectionToString(Object object, ToStringStyle 
style, boolean outputTransients) {
@@ -145,6 +160,15 @@
     /**
      * <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
      * 
+     * @param object
+     *            the Object to be output
+     * @param style
+     *            the style of the <code>toString</code> to create, may be 
<code>null</code>
+     * @param outputTransients
+     *            whether to include transient fields
+     * @param reflectUpToClass
+     *            the superclass to reflect up to (inclusive), may be 
<code>null</code>
+     * @return the String result
      * @see 
ReflectionToStringBuilder#toString(Object,ToStringStyle,boolean,boolean,Class)
      * @since 2.0
      */



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to