]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
added toString()
authorAdrian Cumiskey <acumiskey@apache.org>
Mon, 30 Jun 2008 13:55:55 +0000 (13:55 +0000)
committerAdrian Cumiskey <acumiskey@apache.org>
Mon, 30 Jun 2008 13:55:55 +0000 (13:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@672767 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/afp/fonts/AFPFont.java

index 2819cf12c4dcde00ef169cf62e41c26e0910ada9..e87675e63af9787f2a94d9eb3ea303c46fcce188 100644 (file)
@@ -41,7 +41,6 @@ public abstract class AFPFont extends Typeface {
      */
     public AFPFont(String name) {
         this.name = name;
-
     }
 
     /** {@inheritDoc} */
@@ -106,4 +105,8 @@ public abstract class AFPFont extends Typeface {
         return true;
     }
 
+    /** {@inheritDoc} */
+    public String toString() {
+        return "name=" + name;
+    }
 }
\ No newline at end of file