summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java
new file mode 100644
index 0000000..c45b1fe
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java
@@ -0,0 +1,43 @@
+/*
+ * SVGFEDiffuseLightingElement.java
+ *
+ * Created on April 13, 2007, 11:03 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 SVGFEDiffuseLightingElement interface corresponds to the 'feDiffuseLighting' element.
+ * @author kitfox
+ */
+public interface SVGFEDiffuseLightingElement extends SVGElement,
+ SVGFilterPrimitiveStandardAttributes
+{
+ /**
+ * Corresponds to attribute in on the given 'feDiffuseLighting' element.
+ */
+ public SVGAnimatedString getIn1();
+ /**
+ * Corresponds to attribute surfaceScale on the given 'feDiffuseLighting' element.
+ */
+ public SVGAnimatedNumber getSurfaceScale();
+ /**
+ * Corresponds to attribute diffuseConstant on the given 'feDiffuseLighting' element.
+ */
+ public SVGAnimatedNumber getDiffuseConstant();
+ /**
+ * Corresponds to attribute kernelUnitLengthX on the given 'feDiffuseLighting' element.
+ */
+ public SVGAnimatedNumber getKernelUnitLengthX();
+ /**
+ * Corresponds to attribute kernelUnitLengthY on the given 'feDiffuseLighting' element.
+ */
+ public SVGAnimatedNumber getKernelUnitLengthY();
+}