diff options
author | Glen Mazza <gmazza@apache.org> | 2004-10-13 00:31:46 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-10-13 00:31:46 +0000 |
commit | 29bb02aa9f36915eeee86e8fc596c6135c2b72ef (patch) | |
tree | 571fb2e965c3ab4e8009fc97a736bf44fb847cac /src/java/org/apache/fop/fo/FOText.java | |
parent | 515e983697f6a2e8f2683de9206ad17840071187 (diff) | |
download | xmlgraphics-fop-29bb02aa9f36915eeee86e8fc596c6135c2b72ef.tar.gz xmlgraphics-fop-29bb02aa9f36915eeee86e8fc596c6135c2b72ef.zip |
PR:
Obtained from:
Submitted by:
Reviewed by:
Some simplifications allowed as a result of having FOText extend FONode directly.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198042 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/FOText.java')
-rw-r--r-- | src/java/org/apache/fop/fo/FOText.java | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/java/org/apache/fop/fo/FOText.java b/src/java/org/apache/fop/fo/FOText.java index 4bdc0c5b4..3c4f70b29 100644 --- a/src/java/org/apache/fop/fo/FOText.java +++ b/src/java/org/apache/fop/fo/FOText.java @@ -28,7 +28,7 @@ import org.apache.fop.fo.pagination.Root; import org.apache.fop.layoutmgr.TextLayoutManager; /** - * A text node in the formatting object tree. + * A text node (PCDATA) in the formatting object tree. * * Unfortunately the BufferManager implementatation holds * onto references to the character data in this object @@ -489,14 +489,6 @@ public class FOText extends FONode { } /** - * @todo rename somehow, there isn't an fo:text. - * @todo see if should still be a subclass of FObj - */ - public String getName() { - return "fo:text"; - } - - /** * @see org.apache.fop.fo.FONode#addLayoutManager(List) */ public void addLayoutManager(List list) { |