summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/color
diff options
context:
space:
mode:
authorkitfox2007-04-13 19:20:05 +0200
committerkitfox2007-04-13 19:20:05 +0200
commit65f0e5e2c221ded631876b60e1caed767a298aaa (patch)
tree383057bfc7aacb850cc9c14ce08a908b94a4c27f /src/main/java/com/kitfox/salamander/svg/color
parentAdded more interfaces. (diff)
downloadsvg-salamander-core-65f0e5e2c221ded631876b60e1caed767a298aaa.tar.gz
svg-salamander-core-65f0e5e2c221ded631876b60e1caed767a298aaa.tar.xz
svg-salamander-core-65f0e5e2c221ded631876b60e1caed767a298aaa.zip
Switching to W3C's Java binding.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@25 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/color')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java37
-rw-r--r--src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileRule.java39
2 files changed, 0 insertions, 76 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java b/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java
deleted file mode 100644
index d6a74bd..0000000
--- a/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * SVGColorProfileElement.java
- *
- * Created on April 13, 2007, 10:05 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.color;
-
-import com.kitfox.salamander.svg.DOMString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-import com.kitfox.salamander.svg.basic.SVGRenderingIntent;
-import com.kitfox.salamander.svg.basic.SVGURIReference;
-
-/**
- * The SVGColorProfileElement interface corresponds to the 'color-profile' element.
- * @author kitfox
- */
-public interface SVGColorProfileElement extends SVGElement,
- SVGURIReference,
- SVGRenderingIntent
-{
- /**
- * Corresponds to attribute local on the given element.
- */
- public DOMString getLocal();
- /**
- * Corresponds to attribute name on the given element.
- */
- public DOMString getName();
- /**
- * Corresponds to attribute rendering-intent on the given element. The type of rendering intent, identified by one of the SVGRenderingIntent constants.
- */
- public SVGRenderingIntent getRenderingIntent();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileRule.java b/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileRule.java
deleted file mode 100644
index d24b8df..0000000
--- a/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileRule.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * SVGColorProfileRule.java
- *
- * Created on April 13, 2007, 10:09 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.color;
-
-import com.kitfox.salamander.svg.DOMString;
-import com.kitfox.salamander.svg.basic.SVGCSSRule;
-import com.kitfox.salamander.svg.basic.SVGRenderingIntent;
-
-/**
- *
- * The SVGColorProfileRule interface represents an @color-profile rule in a CSS style sheet. An @color-profile rule identifies a ICC profile which can be referenced within a given document.
- *
- * Support for the SVGColorProfileRule interface is only required in user agents that support styling with CSS.
- * @author kitfox
- */
-public interface SVGColorProfileRule extends SVGCSSRule,
- SVGRenderingIntent
-{
- /**
- * Corresponds to property src within an @color-profile rule.
- */
- public DOMString getSrc();
- /**
- * Corresponds to property name within an @color-profile rule.
- */
- public DOMString getName();
- /**
- * The type of rendering intent, identified by one of the SVGRenderingIntent constants.
- */
- public SVGRenderingIntent getRenderingIntent();
-
-}