summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java')
-rw-r--r--src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java b/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java
deleted file mode 100644
index 91fa64b..0000000
--- a/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java
+++ /dev/null
@@ -1,21 +0,0 @@
-
-package org.w3c.dom.svg;
-
-public interface SVGComponentTransferFunctionElement extends
- SVGElement {
- // Component Transfer Types
- public static final short SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
- public static final short SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1;
- public static final short SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2;
- public static final short SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3;
- public static final short SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4;
- public static final short SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5;
-
- public SVGAnimatedEnumeration getType( );
- public SVGAnimatedNumberList getTableValues( );
- public SVGAnimatedNumber getSlope( );
- public SVGAnimatedNumber getIntercept( );
- public SVGAnimatedNumber getAmplitude( );
- public SVGAnimatedNumber getExponent( );
- public SVGAnimatedNumber getOffset( );
-}