summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java
deleted file mode 100644
index b4ad35f..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * SVGFilterPrimitiveStandardAttributes.java
- *
- * Created on April 13, 2007, 10:37 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.SVGAnimatedLength;
-import com.kitfox.salamander.svg.basic.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGStylable;
-
-/**
- * This interface defines the set of DOM attributes that are common across the filter interfaces.
- * @author kitfox
- */
-public interface SVGFilterPrimitiveStandardAttributes extends SVGStylable
-{
- /**
- * Corresponds to attribute x on the given element.
- */
- public SVGAnimatedLength getX();
- /**
- * Corresponds to attribute y on the given element.
- */
- public SVGAnimatedLength getY();
- /**
- * Corresponds to attribute width on the given element.
- */
- public SVGAnimatedLength getWidth();
- /**
- * Corresponds to attribute height on the given element.
- */
- public SVGAnimatedLength getHeight();
- /**
- * Corresponds to attribute result on the given element.
- */
- public SVGAnimatedString getResult();
-}