summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGScriptElement.java
blob: 7dd0a6075736725144108ffa31c84ee1aecd6a1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGScriptElement extends 
               SVGElement,
               SVGURIReference,
               SVGExternalResourcesRequired {
  public String getType( );
  public void      setType( String type )
                       throws DOMException;
}