1 17 18 19 20 package org.apache.fop.layoutmgr.inline; 21 22 import java.util.ArrayList ; 23 import java.util.List ; 24 25 import org.apache.fop.area.inline.InlineArea; 26 import org.apache.fop.fo.flow.BidiOverride; 27 28 29 34 public class BidiLayoutManager extends LeafNodeLayoutManager { 35 36 private List children; 37 38 public BidiLayoutManager(BidiOverride node, InlineLayoutManager cLM) { 39 super(node); 40 setParent(cLM); 41 children = new ArrayList (); 42 54 } 55 56 public int size() { 57 return children.size(); 58 } 59 60 public InlineArea get(int index) { 61 return (InlineArea) children.get(index); 62 } 63 64 } 65 | Popular Tags |