summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java
new file mode 100644
index 0000000..e9b2f75
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java
@@ -0,0 +1,42 @@
+/*
+ * SVGFEGaussianBlurElement.java
+ *
+ * Created on April 13, 2007, 11:15 AM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package com.kitfox.salamander.svg.filter;
+
+import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
+import com.kitfox.salamander.svg.basic.SVGAnimatedString;
+import com.kitfox.salamander.svg.basic.SVGElement;
+
+/**
+ *
+ * The SVGFEGaussianBlurElement interface corresponds to the 'feGaussianBlur' element.
+ * @author kitfox
+ */
+public interface SVGFEGaussianBlurElement extends SVGElement,
+ SVGFilterPrimitiveStandardAttributes
+{
+ /**
+ * Corresponds to attribute in on the given 'feGaussianBlur' element.
+ */
+ public SVGAnimatedString getIn1();
+ /**
+ * Corresponds to attribute stdDeviation on the given 'feGaussianBlur' element. Contains the X component of attribute stdDeviation.
+ */
+ public SVGAnimatedNumber getStdDeviationX();
+ /**
+ * Corresponds to attribute stdDeviation on the given 'feGaussianBlur' element. Contains the Y component (possibly computed automatically) of attribute stdDeviation.
+ */
+ public SVGAnimatedNumber getStdDeviationY();
+ /**
+ * Sets the values for attribute stdDeviation.
+ * @param stdDeviationX The X component of attribute stdDeviation.
+ * @param stdDeviationY The Y component of attribute stdDeviation.
+ */
+ public void setStdDeviation(float stdDeviationX, float stdDeviationY);
+}