Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGStyleElement.java
2 package org.w3c.dom.svg;
4 import org.w3c.dom.DOMException;
6 public interface SVGStyleElement extends 
7                SVGElement {
8   public String getXMLspace( );
9   public void      setXMLspace( String xmlspace )
10                        throws DOMException;
11   public String getType( );
12   public void      setType( String type )
13                        throws DOMException;
14   public String getMedia( );
15   public void      setMedia( String media )
16                        throws DOMException;
17   public String getTitle( );
18   public void      setTitle( String title )
19                        throws DOMException;
20 }