summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java
new file mode 100644
index 0000000..052f893
--- /dev/null
+++ b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java
@@ -0,0 +1,32 @@
+/*
+ * SVGFEImageElement.java
+ *
+ * Created on April 13, 2007, 11:17 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.SVGElement;
+import com.kitfox.salamander.svg.basic.SVGExternalResourcesRequired;
+import com.kitfox.salamander.svg.basic.SVGLangSpace;
+import com.kitfox.salamander.svg.basic.SVGURIReference;
+import com.kitfox.salamander.svg.coordSystems.SVGAnimatedPreserveAspectRatio;
+
+/**
+ * The SVGFEImageElement interface corresponds to the 'feImage' element.
+ * @author kitfox
+ */
+public interface SVGFEImageElement extends SVGElement,
+ SVGURIReference,
+ SVGLangSpace,
+ SVGExternalResourcesRequired,
+ SVGFilterPrimitiveStandardAttributes
+{
+ /**
+ * Corresponds to attribute preserveAspectRatio on the given element.
+ */
+ public SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();
+}