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, 0 insertions, 32 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
deleted file mode 100644
index 052f893..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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();
-}