1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.Node ; 22 import org.w3c.dom.svg.SVGAnimatedNumber; 23 import org.w3c.dom.svg.SVGStopElement; 24 25 31 public class SVGOMStopElement 32 extends SVGStylableElement 33 implements SVGStopElement { 34 35 38 protected SVGOMStopElement() { 39 } 40 41 46 public SVGOMStopElement(String prefix, AbstractDocument owner) { 47 super(prefix, owner); 48 } 49 50 53 public String getLocalName() { 54 return SVG_STOP_TAG; 55 } 56 57 61 public SVGAnimatedNumber getOffset() { 62 return getAnimatedNumberAttribute(null, SVG_OFFSET_ATTRIBUTE, 0f); 63 } 64 65 68 protected Node newNode() { 69 return new SVGOMStopElement(); 70 } 71 } 72 | Popular Tags |