1 17 18 19 20 package org.apache.fop.layoutmgr.inline; 21 22 import java.util.List ; 24 25 import org.apache.fop.area.inline.InlineArea; 27 import org.apache.fop.fo.flow.InlineContainer; 28 33 public class ICLayoutManager extends LeafNodeLayoutManager { 34 private InlineContainer fobj; 35 private List childrenLM; 36 37 public ICLayoutManager(InlineContainer node, List childLM) { 38 super(node); 39 fobj = node; 40 childrenLM = childLM; 41 } 42 43 public InlineArea get(int index) { 44 return null; 45 } 46 47 protected void addId() { 48 getPSLM().addIDToPage(fobj.getId()); 49 } 50 } 51 | Popular Tags |