1 2 package org.w3c.dom.svg;3 4 import org.w3c.dom.DOMException ;5 6 public interface SVGScriptElement extends 7 SVGElement,8 SVGURIReference,9 SVGExternalResourcesRequired {10 public String getType( );11 public void setType( String type )12 throws DOMException ;13 }14