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