summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFEDisplacementMapElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGFEDisplacementMapElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGFEDisplacementMapElement.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGFEDisplacementMapElement.java b/src/main/java/org/w3c/dom/svg/SVGFEDisplacementMapElement.java
deleted file mode 100644
index d2270e2..0000000
--- a/src/main/java/org/w3c/dom/svg/SVGFEDisplacementMapElement.java
+++ /dev/null
@@ -1,19 +0,0 @@
-
-package org.w3c.dom.svg;
-
-public interface SVGFEDisplacementMapElement extends
- SVGElement,
- SVGFilterPrimitiveStandardAttributes {
- // Channel Selectors
- public static final short SVG_CHANNEL_UNKNOWN = 0;
- public static final short SVG_CHANNEL_R = 1;
- public static final short SVG_CHANNEL_G = 2;
- public static final short SVG_CHANNEL_B = 3;
- public static final short SVG_CHANNEL_A = 4;
-
- public SVGAnimatedString getIn1( );
- public SVGAnimatedString getIn2( );
- public SVGAnimatedNumber getScale( );
- public SVGAnimatedEnumeration getXChannelSelector( );
- public SVGAnimatedEnumeration getYChannelSelector( );
-}