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