blob: 97faa309be4a7ef38c9abff1b7809235558403b3 [file] [log] [blame]
package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
public interface SVGColorProfileRule extends
SVGCSSRule,
SVGRenderingIntent {
public String getSrc( );
public void setSrc( String src )
throws DOMException;
public String getName( );
public void setName( String name )
throws DOMException;
public short getRenderingIntent( );
public void setRenderingIntent( short renderingIntent )
throws DOMException;
}