diff options
Diffstat (limited to 'src/java/org/apache/fop/fo/FObjMixed.java')
-rw-r--r-- | src/java/org/apache/fop/fo/FObjMixed.java | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/src/java/org/apache/fop/fo/FObjMixed.java b/src/java/org/apache/fop/fo/FObjMixed.java index 58ba11288..d0320b6cc 100644 --- a/src/java/org/apache/fop/fo/FObjMixed.java +++ b/src/java/org/apache/fop/fo/FObjMixed.java @@ -82,20 +82,6 @@ public class FObjMixed extends FObj { } /** - * @param lms the list to which the layout manager(s) should be added - */ - public void addLayoutManager(List lms) { - if (children != null) { - InlineStackingLayoutManager lm; - lm = new InlineStackingLayoutManager(); - lm.setUserAgent(getUserAgent()); - lm.setFObj(this); - lm.setLMiter(new LMiter(children.listIterator())); - lms.add(lm); - } - } - - /** * @param data array of characters containing text to be added * @param start starting array element to add * @param length number of characters to add @@ -127,5 +113,8 @@ public class FObjMixed extends FObj { return new RecursiveCharIterator(this); } + public void acceptVisitor(FOTreeVisitor fotv) { + fotv.serveVisitor(this); + } } |