KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGComponentTransferFunctionElement


1
2 package org.w3c.dom.svg;
3
4 public interface SVGComponentTransferFunctionElement extends
5                SVGElement {
6   // Component Transfer Types
7
public static final short SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
8   public static final short SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1;
9   public static final short SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2;
10   public static final short SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3;
11   public static final short SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4;
12   public static final short SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5;
13
14   public SVGAnimatedEnumeration getType( );
15   public SVGAnimatedNumberList getTableValues( );
16   public SVGAnimatedNumber getSlope( );
17   public SVGAnimatedNumber getIntercept( );
18   public SVGAnimatedNumber getAmplitude( );
19   public SVGAnimatedNumber getExponent( );
20   public SVGAnimatedNumber getOffset( );
21 }
22
Popular Tags