summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFEDiffuseLightingElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGFEDiffuseLightingElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGFEDiffuseLightingElement.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGFEDiffuseLightingElement.java b/src/main/java/org/w3c/dom/svg/SVGFEDiffuseLightingElement.java
new file mode 100644
index 0000000..eb10a16
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGFEDiffuseLightingElement.java
@@ -0,0 +1,12 @@
+
+package org.w3c.dom.svg;
+
+public interface SVGFEDiffuseLightingElement extends
+ SVGElement,
+ SVGFilterPrimitiveStandardAttributes {
+ public SVGAnimatedString getIn1( );
+ public SVGAnimatedNumber getSurfaceScale( );
+ public SVGAnimatedNumber getDiffuseConstant( );
+ public SVGAnimatedNumber getKernelUnitLengthX( );
+ public SVGAnimatedNumber getKernelUnitLengthY( );
+}