Code

Add w3c svg-dom and smil-dom java interfaces
[inkscape.git] / src / bind / java / org / w3c / dom / svg / SVGComponentTransferFunctionElement.java
1 \r
2 package org.w3c.dom.svg;\r
3 \r
4 public interface SVGComponentTransferFunctionElement extends \r
5                SVGElement {\r
6   // Component Transfer Types\r
7   public static final short SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN  = 0;\r
8   public static final short SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1;\r
9   public static final short SVG_FECOMPONENTTRANSFER_TYPE_TABLE    = 2;\r
10   public static final short SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE    = 3;\r
11   public static final short SVG_FECOMPONENTTRANSFER_TYPE_LINEAR   = 4;\r
12   public static final short SVG_FECOMPONENTTRANSFER_TYPE_GAMMA    = 5;\r
13 \r
14   public SVGAnimatedEnumeration getType( );\r
15   public SVGAnimatedNumberList  getTableValues( );\r
16   public SVGAnimatedNumber      getSlope( );\r
17   public SVGAnimatedNumber      getIntercept( );\r
18   public SVGAnimatedNumber      getAmplitude( );\r
19   public SVGAnimatedNumber      getExponent( );\r
20   public SVGAnimatedNumber      getOffset( );\r
21 }\r