1 17 18 19 20 package org.apache.fop.layoutmgr.inline; 21 22 import java.util.List ; 23 24 import org.apache.fop.layoutmgr.LayoutManager; 25 import org.apache.fop.layoutmgr.Position; 26 27 30 public interface InlineLevelLayoutManager extends LayoutManager { 31 32 40 List addALetterSpaceTo(List oldList); 41 42 48 void removeWordSpace(List oldList); 49 50 56 void getWordChars(StringBuffer sbChars, Position pos); 57 58 64 void hyphenate(Position pos, HyphContext hc); 65 66 72 boolean applyChanges(List oldList); 73 74 } 75 | Popular Tags |