summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGComponentTransferFunctionElement.java76
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEBlendElement.java63
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEColorMatrixElement.java61
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEComponentTransferElement.java26
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFECompositeElement.java82
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java88
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java43
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEDisplacementMapElement.java67
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java29
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEFloodElement.java26
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncAElement.java19
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncBElement.java19
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncGElement.java19
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncRElement.java19
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java42
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEImageElement.java32
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeElement.java22
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeNodeElement.java25
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEMorphologyElement.java54
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java35
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java33
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java39
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFESpotLightElement.java53
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFETileElement.java26
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFETurbulenceElement.java76
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFilterElement.java72
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFilterPrimitiveStandardAttributes.java42
27 files changed, 0 insertions, 1188 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGComponentTransferFunctionElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGComponentTransferFunctionElement.java
deleted file mode 100644
index 6b42e7b..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGComponentTransferFunctionElement.java
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * SVGComponentTransferFunctionElement.java
- *
- * Created on April 13, 2007, 10:46 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumberList;
-
-/**
- * This interface defines a base interface used by the component transfer function interfaces.
- * @author kitfox
- */
-public interface SVGComponentTransferFunctionElement
-{
- public static enum Type
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value identity.
- */
- IDENTITY,
- /**
- * Corresponds to value table.
- */
- TABLE,
- /**
- * Corresponds to value discrete.
- */
- DISCRETE,
- /**
- * Corresponds to value linear.
- */
- LINEAR,
- /**
- * Corresponds to value gamma.
- */
- GAMMA};
- /**
- * Corresponds to attribute type on the given element. Takes one of the Component Transfer Types.
- */
- public SVGAnimatedEnumeration<Type> getType();
- /**
- * Corresponds to attribute tableValues on the given element.
- */
- public SVGAnimatedNumberList getTableValues();
- /**
- * Corresponds to attribute slope on the given element.
- */
- public SVGAnimatedNumber getSlope();
- /**
- * Corresponds to attribute intercept on the given element.
- */
- public SVGAnimatedNumber getIntercept();
- /**
- * Corresponds to attribute amplitude on the given element.
- */
- public SVGAnimatedNumber getAmplitude();
- /**
- * Corresponds to attribute exponent on the given element.
- */
- public SVGAnimatedNumber getExponent();
- /**
- * Corresponds to attribute offset on the given element.
- */
- public SVGAnimatedNumber getOffset();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEBlendElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEBlendElement.java
deleted file mode 100644
index acaaa2a..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEBlendElement.java
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * SVGFEBlendElement.java
- *
- * Created on April 13, 2007, 10:39 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- *
- * The SVGFEBlendElement interface corresponds to the 'feBlend' element.
- * @author kitfox
- */
-public interface SVGFEBlendElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- public static enum Mode
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value normal.
- */
- NORMAL,
- /**
- * Corresponds to value multiply.
- */
- MULTIPLY,
- /**
- * Corresponds to value screen.
- */
- SCREEN,
- /**
- * Corresponds to value darken.
- */
- DARKEN,
- /**
- * Corresponds to value lighten.
- */
- LIGHTEN};
- /**
- * Corresponds to attribute in on the given 'feBlend' element.
- */
- public SVGAnimatedString getIn1();
- /**
- * Corresponds to attribute in2 on the given 'feBlend' element.
- */
- public SVGAnimatedString getIn2();
- /**
- * Corresponds to attribute mode on the given 'feBlend' element.
- */
- public SVGAnimatedEnumeration<Mode> getMode();
-
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEColorMatrixElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEColorMatrixElement.java
deleted file mode 100644
index cf18d57..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEColorMatrixElement.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * SVGFEColorMatrixElement.java
- *
- * Created on April 13, 2007, 10:42 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumberList;
-import com.kitfox.salamander.svg.basic.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- *
- * The SVGFEColorMatrixElement interface corresponds to the 'feColorMatrix' element.
- * @author kitfox
- */
-public interface SVGFEColorMatrixElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- public static enum Type
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value matrix.
- */
- MATRIX,
- /**
- * Corresponds to value saturate.
- */
- SATURATE,
- /**
- * Corresponds to value hueRotate.
- */
- HUE_ROTATE,
- /**
- * Corresponds to value luminanceToAlpha.
- */
- LUMINANCE_TO_ALPHA};
- /**
- * Corresponds to attribute in on the given 'feColorMatrix' element.
- */
- public SVGAnimatedString getIn1();
- /**
- * Corresponds to attribute type on the given 'feColorMatrix' element. Takes one of the Color Matrix Types.
- */
- public SVGAnimatedEnumeration<Type> getType();
- /**
- * Corresponds to attribute values on the given 'feColorMatrix' element.
- *
- * Provides access to the contents of the values attribute.
- */
- public SVGAnimatedNumberList getValues();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEComponentTransferElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEComponentTransferElement.java
deleted file mode 100644
index cd189ad..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEComponentTransferElement.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * SVGFEComponentTransferElement.java
- *
- * Created on April 13, 2007, 10:45 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.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFEComponentTransferElement interface corresponds to the 'feComponentTransfer' element.
- * @author kitfox
- */
-public interface SVGFEComponentTransferElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- /**
- * Corresponds to attribute in on the given 'feComponentTransfer' element.
- */
- public SVGAnimatedString getIn1();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFECompositeElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFECompositeElement.java
deleted file mode 100644
index d5685f6..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFECompositeElement.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * SVGFECompositeElement.java
- *
- * Created on April 13, 2007, 10:51 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
-import com.kitfox.salamander.svg.basic.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFECompositeElement interface corresponds to the 'feComposite' element.
- * @author kitfox
- */
-public interface SVGFECompositeElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- public static enum Operator
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value over.
- */
- OVER,
- /**
- * Corresponds to value in.
- */
- IN,
- /**
- * Corresponds to value out.
- */
- OUT,
- /**
- * Corresponds to value atop.
- */
- ATOP,
- /**
- * Corresponds to value xor.
- */
- XOR,
- /**
- * Corresponds to value arithmetic.
- */
- ARITHMETIC};
- /**
- * Corresponds to attribute in on the given 'feComposite' element.
- */
- public SVGAnimatedString getIn1();
- /**
- * Corresponds to attribute in2 on the given 'feComposite' element.
- */
- public SVGAnimatedString getIn2();
- /**
- * Corresponds to attribute operator on the given 'feComposite' element. Takes one of the Composite Operators.
- */
- public SVGAnimatedEnumeration<Operator> getOperator();
- /**
- * Corresponds to attribute k1 on the given 'feComposite' element.
- */
- public SVGAnimatedNumber getK1();
- /**
- * Corresponds to attribute k2 on the given 'feComposite' element.
- */
- public SVGAnimatedNumber getK2();
- /**
- * Corresponds to attribute k3 on the given 'feComposite' element.
- */
- public SVGAnimatedNumber getK3();
- /**
- * Corresponds to attribute k4 on the given 'feComposite' element.
- */
- public SVGAnimatedNumber getK4();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java
deleted file mode 100644
index 1ff44da..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * SVGFEConvolveMatrixElement.java
- *
- * Created on April 13, 2007, 10:57 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.SVGAnimatedBoolean;
-import com.kitfox.salamander.svg.basic.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedInteger;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumberList;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFEConvolveMatrixElement interface corresponds to the 'feConvolveMatrix' element.
- * @author kitfox
- */
-public interface SVGFEConvolveMatrixElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- public static enum EdgeMode
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value duplicate.
- */
- DUPLICATE,
- /**
- * Corresponds to value wrap.
- */
- WRAP,
- /**
- * Corresponds to value none.
- */
- NONE};
- /**
- * Corresponds to attribute orderX on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedInteger getOrderX();
- /**
- * Corresponds to attribute orderY on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedInteger getOrderY();
- /**
- * Corresponds to attribute kernelMatrix on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedNumberList getKernelMatrix();
- /**
- * Corresponds to attribute divisor on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedNumber getDivisor();
- /**
- * Corresponds to attribute bias on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedNumber getBias();
- /**
- * Corresponds to attribute targetX on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedInteger getTargetX();
- /**
- * Corresponds to attribute targetY on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedInteger getTargetY();
- /**
- * Corresponds to attribute edgeMode on the given 'feConvolveMatrix' element. Takes one of the EdgeMode Types.
- */
- public SVGAnimatedEnumeration<EdgeMode> getEdgeMode();
- /**
- * Corresponds to attribute kernelUnitLengthX on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedNumber getKernelUnitLengthX();
- /**
- * Corresponds to attribute kernelUnitLengthY on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedNumber getKernelUnitLengthY();
- /**
- * Corresponds to attribute preserveAlpha on the given 'feConvolveMatrix' element.
- */
- public SVGAnimatedBoolean getPreserveAlpha();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java
deleted file mode 100644
index c45b1fe..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDiffuseLightingElement.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * SVGFEDiffuseLightingElement.java
- *
- * Created on April 13, 2007, 11:03 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 SVGFEDiffuseLightingElement interface corresponds to the 'feDiffuseLighting' element.
- * @author kitfox
- */
-public interface SVGFEDiffuseLightingElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- /**
- * Corresponds to attribute in on the given 'feDiffuseLighting' element.
- */
- public SVGAnimatedString getIn1();
- /**
- * Corresponds to attribute surfaceScale on the given 'feDiffuseLighting' element.
- */
- public SVGAnimatedNumber getSurfaceScale();
- /**
- * Corresponds to attribute diffuseConstant on the given 'feDiffuseLighting' element.
- */
- public SVGAnimatedNumber getDiffuseConstant();
- /**
- * Corresponds to attribute kernelUnitLengthX on the given 'feDiffuseLighting' element.
- */
- public SVGAnimatedNumber getKernelUnitLengthX();
- /**
- * Corresponds to attribute kernelUnitLengthY on the given 'feDiffuseLighting' element.
- */
- public SVGAnimatedNumber getKernelUnitLengthY();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDisplacementMapElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDisplacementMapElement.java
deleted file mode 100644
index 06ce6e7..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDisplacementMapElement.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * SVGFEDisplacementMapElement.java
- *
- * Created on April 13, 2007, 11:10 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
-import com.kitfox.salamander.svg.basic.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- *
- * The SVGFEDisplacementMapElement interface corresponds to the 'feDisplacementMap' element.
- * @author kitfox
- */
-public interface SVGFEDisplacementMapElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- public static enum Channel
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value R.
- */
- R,
- /**
- * Corresponds to value G.
- */
- G,
- /**
- * Corresponds to value B.
- */
- B,
- /**
- * Corresponds to value A.
- */
- A};
- /**
- * Corresponds to attribute in on the given 'feDisplacementMap' element.
- */
- public SVGAnimatedString getIn1();
- /**
- * Corresponds to attribute in2 on the given 'feDisplacementMap' element.
- */
- public SVGAnimatedString getIn2();
- /**
- * Corresponds to attribute scale on the given 'feDisplacementMap' element.
- */
- public SVGAnimatedNumber getScale();
- /**
- * Corresponds to attribute xChannelSelector on the given 'feDisplacementMap' element.
- */
- public SVGAnimatedEnumeration<Channel> getXChannelSelector();
- /**
- * Corresponds to attribute yChannelSelector on the given 'feDisplacementMap' element.
- */
- public SVGAnimatedEnumeration<Channel> getYChannelSelector();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java
deleted file mode 100644
index 0141918..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEDistantLightElement.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * SVGFEDistantLightElement.java
- *
- * Created on April 13, 2007, 11:05 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.SVGElement;
-
-/**
- * The SVGFEDistantLightElement interface corresponds to the 'feDistantLight' element.
- * @author kitfox
- */
-public interface SVGFEDistantLightElement extends SVGElement
-{
- /**
- * Corresponds to attribute azimuth on the given 'feDistantLight' element.
- */
- public SVGAnimatedNumber getAzimuth();
- /**
- * Corresponds to attribute elevation on the given 'feDistantLight' element.
- */
- public SVGAnimatedNumber getElevation();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFloodElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFloodElement.java
deleted file mode 100644
index f1c33a4..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFloodElement.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * SVGFEFloodElement.java
- *
- * Created on April 13, 2007, 11:14 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.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFEFloodElement interface corresponds to the 'feFlood' element.
- * @author kitfox
- */
-public interface SVGFEFloodElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- /**
- * Corresponds to attribute in on the given 'feFlood' element.
- */
- public SVGAnimatedString getIn1();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncAElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncAElement.java
deleted file mode 100644
index f2296c9..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncAElement.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * SVGFEFuncRElement.java
- *
- * Created on April 13, 2007, 10:49 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.filter;
-
-/**
- * The SVGFEFuncAElement interface corresponds to the 'feFuncA' element.
- * @author kitfox
- */
-public interface SVGFEFuncAElement extends SVGComponentTransferFunctionElement
-{
-
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncBElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncBElement.java
deleted file mode 100644
index a0acf67..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncBElement.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * SVGFEFuncRElement.java
- *
- * Created on April 13, 2007, 10:49 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.filter;
-
-/**
- * The SVGFEFuncBElement interface corresponds to the 'feFuncB' element.
- * @author kitfox
- */
-public interface SVGFEFuncBElement extends SVGComponentTransferFunctionElement
-{
-
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncGElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncGElement.java
deleted file mode 100644
index c51d459..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncGElement.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * SVGFEFuncRElement.java
- *
- * Created on April 13, 2007, 10:49 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.filter;
-
-/**
- * The SVGFEFuncGElement interface corresponds to the 'feFuncG' element.
- * @author kitfox
- */
-public interface SVGFEFuncGElement extends SVGComponentTransferFunctionElement
-{
-
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncRElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncRElement.java
deleted file mode 100644
index 50a57f7..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEFuncRElement.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * SVGFEFuncRElement.java
- *
- * Created on April 13, 2007, 10:49 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.filter;
-
-/**
- * The SVGFEFuncRElement interface corresponds to the 'feFuncR' element.
- * @author kitfox
- */
-public interface SVGFEFuncRElement extends SVGComponentTransferFunctionElement
-{
-
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java
deleted file mode 100644
index e9b2f75..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEGaussianBlurElement.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * SVGFEGaussianBlurElement.java
- *
- * Created on April 13, 2007, 11:15 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 SVGFEGaussianBlurElement interface corresponds to the 'feGaussianBlur' element.
- * @author kitfox
- */
-public interface SVGFEGaussianBlurElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- /**
- * Corresponds to attribute in on the given 'feGaussianBlur' element.
- */
- public SVGAnimatedString getIn1();
- /**
- * Corresponds to attribute stdDeviation on the given 'feGaussianBlur' element. Contains the X component of attribute stdDeviation.
- */
- public SVGAnimatedNumber getStdDeviationX();
- /**
- * Corresponds to attribute stdDeviation on the given 'feGaussianBlur' element. Contains the Y component (possibly computed automatically) of attribute stdDeviation.
- */
- public SVGAnimatedNumber getStdDeviationY();
- /**
- * Sets the values for attribute stdDeviation.
- * @param stdDeviationX The X component of attribute stdDeviation.
- * @param stdDeviationY The Y component of attribute stdDeviation.
- */
- public void setStdDeviation(float stdDeviationX, float stdDeviationY);
-}
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();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeElement.java
deleted file mode 100644
index ee3a227..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeElement.java
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * SVGFEMergeElement.java
- *
- * Created on April 13, 2007, 11:18 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;
-
-/**
- * The SVGFEMergeElement interface corresponds to the 'feMerge' element.
- * @author kitfox
- */
-public interface SVGFEMergeElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
-
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeNodeElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeNodeElement.java
deleted file mode 100644
index b899e0d..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMergeNodeElement.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * SVGFEMergeNodeElement.java
- *
- * Created on April 13, 2007, 11:19 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.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFEMergeNodeElement interface corresponds to the 'feMergeNode' element.
- * @author kitfox
- */
-public interface SVGFEMergeNodeElement extends SVGElement
-{
- /**
- * Corresponds to attribute in on the given 'feMergeNode' element.
- */
- public SVGAnimatedString getIn1();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMorphologyElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMorphologyElement.java
deleted file mode 100644
index 01eafd2..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEMorphologyElement.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * SVGFEMorphologyElement.java
- *
- * Created on April 13, 2007, 11:20 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
-import com.kitfox.salamander.svg.basic.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFEMorphologyElement interface corresponds to the 'feMorphology' element.
- * @author kitfox
- */
-public interface SVGFEMorphologyElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- public static enum Operator
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value erode.
- */
- ERODE,
- /**
- * Corresponds to value dilate.
- */
- DILATE};
- /**
- * Corresponds to attribute in on the given 'feMorphology' element.
- */
- public SVGAnimatedString getIn1();
- /**
- * Corresponds to attribute operator on the given 'feMorphology' element. Takes one of the Morphology Operators.
- */
- public SVGAnimatedEnumeration<Operator> getOperator();
- /**
- * Corresponds to attribute radiusX on the given 'feMorphology' element.
- */
- public SVGAnimatedNumber getRadiusX();
- /**
- * Corresponds to attribute radiusY on the given 'feMorphology' element.
- */
- public SVGAnimatedNumber getRadiusY();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java
deleted file mode 100644
index ed3a4f5..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEOffseElement.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * 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();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java
deleted file mode 100644
index fde39f2..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFEPointLightElement.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * SVGFEPointLightElement.java
- *
- * Created on April 13, 2007, 11:06 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.SVGElement;
-
-/**
- * The SVGFEPointLightElement interface corresponds to the 'fePointLight' element.
- * @author kitfox
- */
-public interface SVGFEPointLightElement extends SVGElement
-{
- /**
- * Corresponds to attribute x on the given 'fePointLight' element.
- */
- public SVGAnimatedNumber getX();
- /**
- * Corresponds to attribute y on the given 'fePointLight' element.
- */
- public SVGAnimatedNumber getY();
- /**
- * Corresponds to attribute z on the given 'fePointLight' element.
- */
- public SVGAnimatedNumber getZ();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java
deleted file mode 100644
index a294faa..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpecularLightingElement.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * 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();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpotLightElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpotLightElement.java
deleted file mode 100644
index 0bef34d..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFESpotLightElement.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * SVGFESpotLightElement.java
- *
- * Created on April 13, 2007, 11:08 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.SVGElement;
-
-/**
- * The SVGFESpotLightElement interface corresponds to the 'feSpotLight' element.
- * @author kitfox
- */
-public interface SVGFESpotLightElement extends SVGElement
-{
- /**
- * Corresponds to attribute x on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getX();
- /**
- * Corresponds to attribute y on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getY();
- /**
- * Corresponds to attribute z on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getZ();
- /**
- * Corresponds to attribute pointsAtX on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getPointsAtX();
- /**
- * Corresponds to attribute pointsAtY on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getPointsAtY();
- /**
- * Corresponds to attribute pointsAtZ on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getPointsAtZ();
- /**
- * Corresponds to attribute specularExponent on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getSpecularExponent();
- /**
- * Corresponds to attribute limitingConeAngle on the given 'feSpotLight' element.
- */
- public SVGAnimatedNumber getLimitingConeAngle();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFETileElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFETileElement.java
deleted file mode 100644
index a5f9df7..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFETileElement.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * SVGFETileElement.java
- *
- * Created on April 13, 2007, 11:25 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.SVGAnimatedString;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFETileElement interface corresponds to the 'feTile' element.
- * @author kitfox
- */
-public interface SVGFETileElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- /**
- * Corresponds to attribute in on the given 'feTile' element.
- */
- public SVGAnimatedString getIn1();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFETurbulenceElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFETurbulenceElement.java
deleted file mode 100644
index 622dcd1..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFETurbulenceElement.java
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * SVGFETurbulenceElement.java
- *
- * Created on April 13, 2007, 11:26 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedInteger;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumber;
-import com.kitfox.salamander.svg.basic.SVGElement;
-
-/**
- * The SVGFETurbulenceElement interface corresponds to the 'feTurbulence' element.
- * @author kitfox
- */
-public interface SVGFETurbulenceElement extends SVGElement,
- SVGFilterPrimitiveStandardAttributes
-{
- public static enum Turbulence
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value fractalNoise.
- */
- FRACTAL_NOISE,
- /**
- * Corresponds to value turbulence.
- */
- TURBULENCE};
- public static enum StitchType
- {
- /**
- * The type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
- */
- UNKNOWN,
- /**
- * Corresponds to value stitch.
- */
- STITCH,
- /**
- * Corresponds to value noStitch.
- */
- NO_STITCH};
- /**
- * Corresponds to attribute baseFrequencyX on the given 'feTurbulence' element.
- */
- public SVGAnimatedNumber getBaseFrequencyX();
- /**
- * Corresponds to attribute baseFrequencyY on the given 'feTurbulence' element.
- */
- public SVGAnimatedNumber getBaseFrequencyY();
- /**
- * Corresponds to attribute numOctaves on the given 'feTurbulence' element.
- */
- public SVGAnimatedInteger getNumOctaves();
- /**
- * Corresponds to attribute seed on the given 'feTurbulence' element.
- */
- public SVGAnimatedNumber getSeed();
- /**
- * Corresponds to attribute stitchTiles on the given 'feTurbulence' element.
- */
- public SVGAnimatedEnumeration<StitchType> getStitchTiles();
- /**
- * Corresponds to attribute type on the given 'feTurbulence' element.
- */
- public SVGAnimatedEnumeration<Turbulence> getType();
-}
diff --git a/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterElement.java b/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterElement.java
deleted file mode 100644
index e4c89bd..0000000
--- a/src/main/java/com/kitfox/salamander/svg/filter/SVGFilterElement.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * SVGFilterElement.java
- *
- * Created on April 13, 2007, 10:33 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.SVGAnimatedEnumeration;
-import com.kitfox.salamander.svg.basic.SVGAnimatedInteger;
-import com.kitfox.salamander.svg.basic.SVGAnimatedLength;
-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.SVGStylable;
-import com.kitfox.salamander.svg.basic.SVGURIReference;
-import com.kitfox.salamander.svg.basic.SVGUnitTypes;
-
-/**
- * The SVGFilterElement interface corresponds to the 'filter' element.
- * @author kitfox
- */
-public interface SVGFilterElement extends SVGElement,
- SVGURIReference,
- SVGLangSpace,
- SVGExternalResourcesRequired,
- SVGStylable,
- SVGUnitTypes
-{
- /**
- * Corresponds to attribute filterUnits on the given 'filter' element. Takes one of the constants defined in SVGUnitTypes.
- */
- public SVGAnimatedEnumeration<SVGUnitTypes.Type> getFilterUnits();
- /**
- * Corresponds to attribute primitiveUnits on the given 'filter' element. Takes one of the constants defined in SVGUnitTypes.
- */
- public SVGAnimatedEnumeration<SVGUnitTypes.Type> getPrimitiveUnits();
- /**
- * Corresponds to attribute x on the given 'filter' element.
- */
- public SVGAnimatedLength getX();
- /**
- * Corresponds to attribute y on the given 'filter' element.
- */
- public SVGAnimatedLength getY();
- /**
- * Corresponds to attribute width on the given 'filter' element.
- */
- public SVGAnimatedLength getWidth();
- /**
- * Corresponds to attribute height on the given 'filter' element.
- */
- public SVGAnimatedLength getHeight();
- /**
- * Corresponds to attribute filterResX on the given 'filter' element.
- */
- public SVGAnimatedInteger getFilterResX();
- /**
- * Corresponds to attribute filterResY on the given 'filter' element.
- */
- public SVGAnimatedInteger getFilterResY();
- /**
- * Sets the values for attribute filterRes.
- * @param filterResX The X component of attribute filterRes.
- * @param filterResY The Y component of attribute filterRes.
- */
- public void setFilterRes(int filterResX, int filterResY);
-
-}
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();
-}