summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGColorProfileElement.java
blob: 19633313d70f5b54ca5ba7ca15434b4556d41175 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

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;
}