1 51 package org.apache.fop.fo.expr; 52 53 import org.apache.fop.fo.Property; 54 import org.apache.fop.datatypes.Length; 55 import org.apache.fop.datatypes.ColorType; 56 57 class NumericProperty extends Property { 58 private Numeric numeric; 59 60 NumericProperty(Numeric value) { 61 this.numeric = value; 62 } 63 64 public Numeric getNumeric() { 65 return this.numeric; 66 } 67 68 public Number getNumber() { 69 return numeric.asNumber(); 70 } 71 72 public Length getLength() { 73 return numeric.asLength(); 74 } 75 76 public ColorType getColorType() { 77 return null; 79 } 80 81 public Object getObject() { 82 return this.numeric; 83 } 84 85 } 86 | Popular Tags |