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