summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java
new file mode 100644
index 0000000..fde39f2
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java
@@ -0,0 +1,33 @@
+/*
+ * SVGFEPointLightElement.java
+ *
+ * Created on April 13, 2007, 11:06 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.SVGElement;
+
+/**
+ * The SVGFEPointLightElement interface corresponds to the 'fePointLight' element.
+ * @author kitfox
+ */
+public interface SVGFEPointLightElement extends SVGElement
+{
+ /**
+ * Corresponds to attribute x on the given 'fePointLight' element.
+ */
+ public SVGAnimatedNumber getX();
+ /**
+ * Corresponds to attribute y on the given 'fePointLight' element.
+ */
+ public SVGAnimatedNumber getY();
+ /**
+ * Corresponds to attribute z on the given 'fePointLight' element.
+ */
+ public SVGAnimatedNumber getZ();
+}