1,22c1,19 < /* < * 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; < < public interface SVGColorProfileElement extends SVGElement, SVGURIReference, SVGRenderingIntent { < String getLocal(); < void setLocal(String local); < String getName(); < void setName(String name); < short getRenderingIntent(); < void setRenderingIntent(short renderingIntent); < } --- > > package org.w3c.dom.svg; > > import org.w3c.dom.DOMException; > > public interface SVGColorProfileElement extends > SVGElement, > SVGURIReference, > SVGRenderingIntent { > public String getLocal( ); > public void setLocal( String local ) > throws DOMException; > public String getName( ); > public void setName( String name ) > throws DOMException; > public short getRenderingIntent( ); > public void setRenderingIntent( short renderingIntent ) > throws DOMException; > }