Browse Source

added toString()


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@672771 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_0
Adrian Cumiskey 16 years ago
parent
commit
d9f897c660
1 changed files with 8 additions and 1 deletions
  1. 8
    1
      src/java/org/apache/fop/render/afp/AFPFontAttributes.java

+ 8
- 1
src/java/org/apache/fop/render/afp/AFPFontAttributes.java View File

@@ -96,5 +96,12 @@ public class AFPFontAttributes {
public void setFontReference(int fontReference) {
this.fontReference = fontReference;
}

/** {@inheritDoc} */
public String toString() {
return "fontReference=" + fontReference
+ ", fontKey=" + fontKey
+ ", font=" + font
+ ", pointSize=" + pointSize;
}
}

Loading…
Cancel
Save