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

src/java/org/apache/fop/fo/FOText.java
src/java/org/apache/fop/layoutmgr/BreakPoss.java
src/java/org/apache/fop/layoutmgr/LeafPosition.java

index 793a7b8bd61bd61cc5a1c77ff77068a02d47f94a..0beca379132fcc38cbc7d6a605f21eb9f0b0feae 100644 (file)
@@ -19,7 +19,6 @@
 package org.apache.fop.fo;
 
 // Java
-import java.util.List;
 import java.util.NoSuchElementException;
 
 // FOP
@@ -32,7 +31,6 @@ import org.apache.fop.fo.properties.CommonHyphenation;
 import org.apache.fop.fo.properties.CommonTextDecoration;
 import org.apache.fop.fo.properties.Property;
 import org.apache.fop.fo.properties.SpaceProperty;
-import org.apache.fop.layoutmgr.TextLayoutManager;
 
 /**
  * A text node (PCDATA) in the formatting object tree.
@@ -577,5 +575,11 @@ public class FOText extends FONode {
     public CommonTextDecoration getTextDecoration() {
         return textDecoration; 
     }
+
+    public String toString() {
+        StringBuffer sb = new StringBuffer(super.toString());
+        sb.append(" (").append(ca).append(")");
+        return sb.toString();
+    }
     
 }
\ No newline at end of file
index 0ac769624b81562f9047c9dc48fdf3e9c3103587..03a613f89c6c117e892b220f800ce1eef11b4a99 100644 (file)
@@ -272,6 +272,9 @@ public class BreakPoss {
         if (isForcedBreak()) {
             sb.append(", forced break");
         }
+        if (nextBreakOverflows()) {
+            sb.append(", next break overflows");
+        }
         sb.append(", stackSize={");
         sb.append(stackSize);
         sb.append("}, pos=");
index 5dac0a06294a6db79128c5d57b887f10f4d0f07e..d4375501f3e924f96ef577fa007b0b72fa7fa140 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.
@@ -30,5 +30,13 @@ public class LeafPosition extends Position {
     public int getLeafPos() {
         return iLeafPos;
     }
+    
+    /** @see java.lang.Object#toString()*/
+    public String toString() {
+        StringBuffer sb = new StringBuffer(super.toString());
+        sb.append(" {pos=").append(getLeafPos());
+        sb.append(", lm=").append(getLM()).append("}");
+        return sb.toString();
+    }
 }