1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.util.XLinkSupport; 21 import org.apache.batik.util.SVGConstants; 22 import org.w3c.dom.Element ; 23 import org.w3c.dom.svg.SVGAnimatedString; 24 25 31 public class SVGURIReferenceSupport implements SVGConstants { 32 33 36 public static SVGAnimatedString getHref(Element elt) { 37 return ((SVGOMElement)elt). 38 getAnimatedStringAttribute(XLinkSupport.XLINK_NAMESPACE_URI, 39 "href"); 40 } 41 } 42 | Popular Tags |