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