1 17 18 19 20 package org.apache.fop.datatypes; 21 22 import org.apache.fop.fo.expr.PropertyException; 23 24 36 public interface Numeric { 37 42 double getNumericValue() throws PropertyException; 43 44 50 double getNumericValue(PercentBaseContext context) throws PropertyException; 51 52 58 int getDimension(); 59 60 65 boolean isAbsolute(); 66 67 71 public int getValue(); 72 73 78 public int getValue(PercentBaseContext context); 79 80 88 90 93 public int getEnum(); 94 } 95 | Popular Tags |