summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java37
1 files changed, 37 insertions, 0 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
new file mode 100644
index 0000000..d6a74bd
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java
@@ -0,0 +1,37 @@
+/*
+ * 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();
+}