summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFEMorphologyElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGFEMorphologyElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGFEMorphologyElement.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGFEMorphologyElement.java b/src/main/java/org/w3c/dom/svg/SVGFEMorphologyElement.java
new file mode 100644
index 0000000..829ed62
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGFEMorphologyElement.java
@@ -0,0 +1,16 @@
+
+package org.w3c.dom.svg;
+
+public interface SVGFEMorphologyElement extends
+ SVGElement,
+ SVGFilterPrimitiveStandardAttributes {
+ // Morphology Operators
+ public static final short SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
+ public static final short SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
+ public static final short SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
+
+ public SVGAnimatedString getIn1( );
+ public SVGAnimatedEnumeration getOperator( );
+ public SVGAnimatedNumber getRadiusX( );
+ public SVGAnimatedNumber getRadiusY( );
+}