summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java
new file mode 100644
index 0000000..ed3a4f5
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java
@@ -0,0 +1,35 @@
+/*
+ * SVGFEOffseElement.java
+ *
+ * Created on April 13, 2007, 11:22 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 SVGFEOffsetElement interface corresponds to the 'feOffset' element.
+ * @author kitfox
+ */
+public interface SVGFEOffseElement extends SVGElement,
+ SVGFilterPrimitiveStandardAttributes
+{
+ /**
+ * Corresponds to attribute in on the given 'feOffset' element.
+ */
+ public SVGAnimatedString getIn1();
+ /**
+ * Corresponds to attribute dx on the given 'feOffset' element.
+ */
+ public SVGAnimatedNumber getDx();
+ /**
+ * Corresponds to attribute dy on the given 'feOffset' element.
+ */
+ public SVGAnimatedNumber getDy();
+}