summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFECompositeElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGFECompositeElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGFECompositeElement.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGFECompositeElement.java b/src/main/java/org/w3c/dom/svg/SVGFECompositeElement.java
new file mode 100644
index 0000000..f4b4c22
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGFECompositeElement.java
@@ -0,0 +1,23 @@
+
+package org.w3c.dom.svg;
+
+public interface SVGFECompositeElement extends
+ SVGElement,
+ SVGFilterPrimitiveStandardAttributes {
+ // Composite Operators
+ public static final short SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
+ public static final short SVG_FECOMPOSITE_OPERATOR_OVER = 1;
+ public static final short SVG_FECOMPOSITE_OPERATOR_IN = 2;
+ public static final short SVG_FECOMPOSITE_OPERATOR_OUT = 3;
+ public static final short SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
+ public static final short SVG_FECOMPOSITE_OPERATOR_XOR = 5;
+ public static final short SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
+
+ public SVGAnimatedString getIn1( );
+ public SVGAnimatedString getIn2( );
+ public SVGAnimatedEnumeration getOperator( );
+ public SVGAnimatedNumber getK1( );
+ public SVGAnimatedNumber getK2( );
+ public SVGAnimatedNumber getK3( );
+ public SVGAnimatedNumber getK4( );
+}