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

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