summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGStyleElement.java
blob: b8e110ef4bcdcf90f4838960eb13d59583050369 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGStyleElement extends 
               SVGElement {
  public String getXMLspace( );
  public void      setXMLspace( String xmlspace )
                       throws DOMException;
  public String getType( );
  public void      setType( String type )
                       throws DOMException;
  public String getMedia( );
  public void      setMedia( String media )
                       throws DOMException;
  public String getTitle( );
  public void      setTitle( String title )
                       throws DOMException;
}