summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGICCColor.java
blob: 79382131ca0d081d3c2f4820ce197ac2dd3d2de8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;
public interface SVGICCColor {
  public String      getColorProfile( );
  public void      setColorProfile( String colorProfile )
                       throws DOMException;
  public SVGNumberList getColors( );
}