summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGComponentTransferFunctionElement.java
blob: 91fa64b95d41fca441fa0c97dac23fd2e84760c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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( );
}