summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java
new file mode 100644
index 0000000..0141918
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java
@@ -0,0 +1,29 @@
+/*
+ * SVGFEDistantLightElement.java
+ *
+ * Created on April 13, 2007, 11:05 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 SVGFEDistantLightElement interface corresponds to the 'feDistantLight' element.
+ * @author kitfox
+ */
+public interface SVGFEDistantLightElement extends SVGElement
+{
+ /**
+ * Corresponds to attribute azimuth on the given 'feDistantLight' element.
+ */
+ public SVGAnimatedNumber getAzimuth();
+ /**
+ * Corresponds to attribute elevation on the given 'feDistantLight' element.
+ */
+ public SVGAnimatedNumber getElevation();
+}