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