1 17 18 19 20 package org.apache.fop.layoutmgr; 21 22 25 public interface BlockLevelLayoutManager extends LayoutManager { 26 27 28 int NO_ADJUSTMENT = -1; 29 30 int SPACE_BEFORE_ADJUSTMENT = 0; 31 32 int SPACE_AFTER_ADJUSTMENT = 1; 33 34 int LINE_NUMBER_ADJUSTMENT = 2; 35 36 int LINE_HEIGHT_ADJUSTMENT = 3; 37 38 int negotiateBPDAdjustment(int adj, KnuthElement lastElement); 39 40 void discardSpace(KnuthGlue spaceGlue); 41 42 45 boolean mustKeepTogether(); 46 47 50 boolean mustKeepWithPrevious(); 51 52 55 boolean mustKeepWithNext(); 56 57 } 58 | Popular Tags |