1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 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 } 21 | Popular Tags |