1,27c1,20 < /* < * Copyright (c) 2009 World Wide Web Consortium, < * < * (Massachusetts Institute of Technology, European Research Consortium for < * Informatics and Mathematics, Keio University). All Rights Reserved. This < * work is distributed under the W3C(r) Software License [1] in the hope that < * it will be useful, but WITHOUT ANY WARRANTY; without even the implied < * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. < * < * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 < */ < < package org.w3c.dom.svg; < < import org.w3c.dom.DOMException; < < public interface SVGStyleElement extends SVGElement, SVGLangSpace { < String getType(); < void setType(String type) < throws DOMException; < String getMedia(); < void setMedia(String media) < throws DOMException; < String getTitle(); < void setTitle(String title) < throws DOMException; < } --- > > 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; > }