summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java')
-rwxr-xr-xsrc/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java b/src/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java
deleted file mode 100755
index d47f44f..0000000
--- a/src/main/java/com/kitfox/salamander/svg/basic/SVGICCColor.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * SVGICCColor.java
- *
- * Created on April 12, 2007, 2:10 PM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.basic;
-
-/**
- *
- * The SVGICCColor interface expresses an ICC-based color specification.
- * @author kitfox
- */
-public interface SVGICCColor
-{
- /**
- * The name of the color profile, which is the first parameter of an ICC color specification.
- */
- public String getColorProfile();
- /**
- * The list of color values that define this ICC color. Each color value is an arbitrary floating point number.
- */
- public SVGNumberList getColors();
-}