summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java
new file mode 100644
index 0000000..a294faa
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java
@@ -0,0 +1,39 @@
+/*
+ * SVGFESpecularLightingElement.java
+ *
+ * Created on April 13, 2007, 11:23 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.SVGAnimatedString;
+import com.kitfox.salamander.svg.basic.SVGElement;
+
+/**
+ * The SVGFESpecularLightingElement interface corresponds to the 'feSpecularLighting' element.
+ * @author kitfox
+ */
+public interface SVGFESpecularLightingElement extends SVGElement,
+ SVGFilterPrimitiveStandardAttributes
+{
+ /**
+ * Corresponds to attribute in on the given 'feSpecularLighting' element.
+ */
+ public SVGAnimatedString getIn1();
+ /**
+ * Corresponds to attribute surfaceScale on the given 'feSpecularLighting' element.
+ */
+ public SVGAnimatedNumber getSurfaceScale();
+ /**
+ * Corresponds to attribute specularConstant on the given 'feSpecularLighting' element.
+ */
+ public SVGAnimatedNumber getSpecularConstant();
+ /**
+ * Corresponds to attribute specularExponent on the given 'feSpecularLighting' element.
+ */
+ public SVGAnimatedNumber getSpecularExponent();
+}