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