KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGScriptElement


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