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.SVGAnimateElement; 23 24 30 public class SVGOMAnimateElement 31 extends SVGOMAnimationElement 32 implements SVGAnimateElement { 33 34 37 protected SVGOMAnimateElement() { 38 } 39 40 45 public SVGOMAnimateElement(String prefix, AbstractDocument owner) { 46 super(prefix, owner); 47 48 } 49 50 53 public String getLocalName() { 54 return SVG_ANIMATE_TAG; 55 } 56 57 60 protected Node newNode() { 61 return new SVGOMAnimateElement(); 62 } 63 } 64 | Popular Tags |