summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java
diff options
context:
space:
mode:
authorkitfox2007-04-13 19:20:05 +0200
committerkitfox2007-04-13 19:20:05 +0200
commit65f0e5e2c221ded631876b60e1caed767a298aaa (patch)
tree383057bfc7aacb850cc9c14ce08a908b94a4c27f /src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java
parentAdded more interfaces. (diff)
downloadsvg-salamander-core-65f0e5e2c221ded631876b60e1caed767a298aaa.tar.gz
svg-salamander-core-65f0e5e2c221ded631876b60e1caed767a298aaa.tar.xz
svg-salamander-core-65f0e5e2c221ded631876b60e1caed767a298aaa.zip
Switching to W3C's Java binding.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@25 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/filter/SVGFEConvolveMatrixElement.java88
1 files changed, 0 insertions, 88 deletions
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();
-}