From aff9b324f9afb93d76ef30c21edcb92c77bee964 Mon Sep 17 00:00:00 2001 From: William Victor Mote Date: Fri, 22 Aug 2003 05:43:27 +0000 Subject: [PATCH] 1. remove unused field 2. some checkstyle/javadoc changes git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196823 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/FOText.java | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/src/java/org/apache/fop/fo/FOText.java b/src/java/org/apache/fop/fo/FOText.java index a7d066cdf..dc7a5829b 100644 --- a/src/java/org/apache/fop/fo/FOText.java +++ b/src/java/org/apache/fop/fo/FOText.java @@ -52,12 +52,8 @@ package org.apache.fop.fo; // Java import java.util.NoSuchElementException; -import java.util.List; // FOP -import org.apache.fop.layout.TextState; -import org.apache.fop.layoutmgr.LayoutManager; -import org.apache.fop.layoutmgr.TextLayoutManager; import org.apache.fop.fo.properties.WhiteSpaceCollapse; import org.apache.fop.fo.flow.Block; import org.apache.fop.fo.pagination.Root; @@ -76,11 +72,21 @@ import org.apache.fop.fo.properties.TextTransform; */ public class FOText extends FObj { + /** + * the character array containing the text + */ public char[] ca; private int start; + + /** + * the length of the character array containing the text + */ public int length; + + /** + * The TextInfo object attached to the text + */ public TextInfo textInfo; - private TextState ts; /** * Keeps track of the last FOText object created within the current @@ -487,6 +493,12 @@ public class FOText extends FObj { } } + /** + * This is a hook for an FOTreeVisitor subclass to be able to access + * this object. + * @param fotv the FOTreeVisitor subclass that can access this object. + * @see org.apache.fop.fo.FOTreeVisitor + */ public void acceptVisitor(FOTreeVisitor fotv) { fotv.serveVisitor(this); } -- 2.39.5