summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java b/src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java
new file mode 100644
index 0000000..e69384a
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java
@@ -0,0 +1,17 @@
+
+package org.w3c.dom.svg;
+
+public interface SVGFEColorMatrixElement extends
+ SVGElement,
+ SVGFilterPrimitiveStandardAttributes {
+ // Color Matrix Types
+ public static final short SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
+ public static final short SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
+ public static final short SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
+ public static final short SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
+ public static final short SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
+
+ public SVGAnimatedString getIn1( );
+ public SVGAnimatedEnumeration getType( );
+ public SVGAnimatedNumberList getValues( );
+}