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, 21 insertions, 0 deletions
diff --git a/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java b/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java
new file mode 100644
index 0000000..91fa64b
--- /dev/null
+++ b/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java
@@ -0,0 +1,21 @@
+
+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( );
+}