1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.svg.SVGAnimatedString; 22 23 29 public abstract class SVGURIReferenceGraphicsElement 30 extends SVGGraphicsElement { 31 32 35 protected SVGURIReferenceGraphicsElement() { 36 } 37 38 43 protected SVGURIReferenceGraphicsElement(String prefix, 44 AbstractDocument owner) { 45 super(prefix, owner); 46 } 47 48 51 public SVGAnimatedString getHref() { 52 return SVGURIReferenceSupport.getHref(this); 53 } 54 } 55 | Popular Tags |