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, 0 insertions, 17 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java b/src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java
deleted file mode 100644
index e69384a..0000000
--- a/src/main/java/org/w3c/dom/svg/SVGFEColorMatrixElement.java
+++ /dev/null
@@ -1,17 +0,0 @@
-
-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( );
-}