]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
toString()
authorJeremias Maerki <jeremias@apache.org>
Wed, 26 Jan 2005 17:50:52 +0000 (17:50 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 26 Jan 2005 17:50:52 +0000 (17:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198326 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/flow/Marker.java

index feebc64e10ca7757d120a56c5b1dd19425e45b1a..96c99b3e45b328560a338f9326cdfc2c09233e97 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -143,6 +143,13 @@ public class Marker extends FObjMixed {
         return FO_MARKER;
     }
 
+    /** @see java.lang.Object#toString() */
+    public String toString() {
+        StringBuffer sb = new StringBuffer(super.toString());
+        sb.append(" {").append(getMarkerClassName()).append("}");
+        return sb.toString();
+    }
+    
     /**
      * An implementation of PropertyList which only stores the explicit
      * assigned properties. It is memory efficient but slow.