git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193857
13f79535-47bb-0310-9956-
ffa450edef68
* a length quantity in XSL
*/
public class Length {
- public static final Length AUTO ;
+ public static final Length AUTO = new Length(0);
static {
- AUTO = new Length(0);
AUTO.bAuto = true;
}
}
}
- private final Number number;
+ private Number number;
public NumberProperty(Number number) {
this.number = number;
CellState state = new CellState( i, false, cumulativeWidth );
// add the state of a cell.
- cells.add( i, state );
+ cells.insertElementAt( state,i);
// cumulative width, i.e start offset of cell
// also known as widthOfCellSoFar...
cumulativeWidth += width;