summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGColor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGColor.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGColor.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGColor.java b/src/main/java/org/w3c/dom/svg/SVGColor.java
deleted file mode 100644
index 1f2b7a5..0000000
--- a/src/main/java/org/w3c/dom/svg/SVGColor.java
+++ /dev/null
@@ -1,25 +0,0 @@
-
-package org.w3c.dom.svg;
-
-import org.w3c.dom.css.RGBColor;
-import org.w3c.dom.css.CSSValue;
-
-public interface SVGColor extends
- CSSValue {
- // Color Types
- public static final short SVG_COLORTYPE_UNKNOWN = 0;
- public static final short SVG_COLORTYPE_RGBCOLOR = 1;
- public static final short SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2;
- public static final short SVG_COLORTYPE_CURRENTCOLOR = 3;
-
- public short getColorType( );
- public RGBColor getRGBColor( );
- public SVGICCColor getICCColor( );
-
- public void setRGBColor ( String rgbColor )
- throws SVGException;
- public void setRGBColorICCColor ( String rgbColor, String iccColor )
- throws SVGException;
- public void setColor ( short colorType, String rgbColor, String iccColor )
- throws SVGException;
-}