1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 import org.w3c.dom.Element ; 6 7 public interface SVGElement extends 8 Element { 9 public String getId( ); 10 public void setId( String id ) 11 throws DOMException ; 12 public String getXMLbase( ); 13 public void setXMLbase( String xmlbase ) 14 throws DOMException ; 15 public SVGSVGElement getOwnerSVGElement( ); 16 public SVGElement getViewportElement( ); 17 } 18 | Popular Tags |