1 17 18 19 20 package org.apache.fop.layoutmgr; 21 22 25 public abstract class UnresolvedListElement extends ListElement { 26 27 31 public UnresolvedListElement(Position position) { 32 super(position); 33 } 34 35 36 public abstract boolean isConditional(); 37 38 39 protected LayoutManager getOriginatingLayoutManager() { 40 Position pos = getPosition(); 41 while (pos instanceof NonLeafPosition && pos.getPosition() != null) { 42 pos = pos.getPosition(); 43 } 44 return pos.getLM(); 45 } 46 47 } 48 | Popular Tags |