1 2 package org.w3c.dom.svg; 3 4 import org.w3c.dom.DOMException ; 5 6 public interface SVGColorProfileRule extends 7 SVGCSSRule, 8 SVGRenderingIntent { 9 public String getSrc( ); 10 public void setSrc( String src ) 11 throws DOMException ; 12 public String getName( ); 13 public void setName( String name ) 14 throws DOMException ; 15 public short getRenderingIntent( ); 16 public void setRenderingIntent( short renderingIntent ) 17 throws DOMException ; 18 } 19 | Popular Tags |