KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFEColorMatrixElement extends
5                SVGElement,
6                SVGFilterPrimitiveStandardAttributes {
7   // Color Matrix Types
8
public static final short SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
9   public static final short SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
10   public static final short SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
11   public static final short SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
12   public static final short SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
13
14   public SVGAnimatedString getIn1( );
15   public SVGAnimatedEnumeration getType( );
16   public SVGAnimatedNumberList getValues( );
17 }
18
Popular Tags