summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFESpotLightElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGFESpotLightElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGFESpotLightElement.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGFESpotLightElement.java b/src/main/java/org/w3c/dom/svg/SVGFESpotLightElement.java
new file mode 100644
index 0000000..5214cb8
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGFESpotLightElement.java
@@ -0,0 +1,14 @@
+
+package org.w3c.dom.svg;
+
+public interface SVGFESpotLightElement extends
+ SVGElement {
+ public SVGAnimatedNumber getX( );
+ public SVGAnimatedNumber getY( );
+ public SVGAnimatedNumber getZ( );
+ public SVGAnimatedNumber getPointsAtX( );
+ public SVGAnimatedNumber getPointsAtY( );
+ public SVGAnimatedNumber getPointsAtZ( );
+ public SVGAnimatedNumber getSpecularExponent( );
+ public SVGAnimatedNumber getLimitingConeAngle( );
+}