225226227228229230231232
public static class FOTextLayoutManagerMaker extends Maker { public void make(FONode node, List lms) { FOText foText = (FOText) node; if (foText.endIndex - foText.startIndex > 0) { lms.add(new TextLayoutManager(foText)); } }
224225226227228229230231
236237238239240241242243
public static class FOTextLayoutManagerMaker extends Maker { /** {@inheritDoc} */ public void make(FONode node, List lms) { FOText foText = (FOText) node; if (foText.length() > 0) { lms.add(new TextLayoutManager(foText)); } }
216217218219220221222223
231232233234235236237238
public static class FOTextLayoutManagerMaker extends Maker { public void make(FONode node, List lms) { FOText foText = (FOText) node; if (foText.length() > 0) { lms.add(new TextLayoutManager(foText)); } }
210211212213214215216217
201202203204205206207208