1 18 package org.apache.batik.css.engine.value.svg12; 19 20 import org.apache.batik.css.engine.value.FloatValue; 21 22 29 public class LineHeightValue extends FloatValue { 30 31 34 protected boolean fontSizeRelative; 35 36 39 public LineHeightValue(short unitType, float floatValue, 40 boolean fontSizeRelative) { 41 super(unitType, floatValue); 42 this.fontSizeRelative = fontSizeRelative; 43 } 44 45 48 public boolean getFontSizeRelative() { 49 return fontSizeRelative; 50 } 51 } 52 | Popular Tags |