Author: vsiveton
Date: Tue May 12 11:03:08 2009
New Revision: 773849

URL: http://svn.apache.org/viewvc?rev=773849&view=rev
Log:
o added toString()

Modified:
    
maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/sink/SinkEventElement.java

Modified: 
maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/sink/SinkEventElement.java
URL: 
http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/sink/SinkEventElement.java?rev=773849&r1=773848&r2=773849&view=diff
==============================================================================
--- 
maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/sink/SinkEventElement.java
 (original)
+++ 
maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/sink/SinkEventElement.java
 Tue May 12 11:03:08 2009
@@ -19,6 +19,7 @@
  * under the License.
  */
 
+import org.apache.commons.lang.builder.ToStringBuilder;
 
 /**
  * A single sink event, used for testing purposes in order to check
@@ -74,4 +75,12 @@
         return this.args;
     }
 
+    /**
+     * {...@inheritdoc}
+     * @since 1.1.1
+     */
+    public String toString()
+    {
+        return ToStringBuilder.reflectionToString( this );
+    }
 }


Reply via email to