1 18 package org.apache.batik.dom.svg; 19 20 27 public class SVGOMAnimatedLength extends AbstractSVGAnimatedLength { 28 29 32 protected String defaultValue; 33 34 42 public SVGOMAnimatedLength(AbstractElement elt, 43 String ns, 44 String ln, 45 String def, 46 short dir) { 47 super(elt, ns, ln, dir); 48 defaultValue = def; 49 } 50 51 55 protected String getDefaultValue() { 56 return defaultValue; 57 } 58 59 } 60 | Popular Tags |