1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.svg.SVGAnimatedString; 22 import org.w3c.dom.svg.SVGURIReference; 23 24 31 public abstract class SVGURIReferenceTextPositioningElement 32 extends SVGOMTextPositioningElement 33 implements SVGURIReference { 34 35 38 protected SVGURIReferenceTextPositioningElement() { 39 } 40 41 46 protected SVGURIReferenceTextPositioningElement(String prefix, 47 AbstractDocument owner) { 48 super(prefix, owner); 49 } 50 51 54 public SVGAnimatedString getHref() { 55 return SVGURIReferenceSupport.getHref(this); 56 } 57 } 58 | Popular Tags |