KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFECompositeElement extends
5                SVGElement,
6                SVGFilterPrimitiveStandardAttributes {
7   // Composite Operators
8
public static final short SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
9   public static final short SVG_FECOMPOSITE_OPERATOR_OVER = 1;
10   public static final short SVG_FECOMPOSITE_OPERATOR_IN = 2;
11   public static final short SVG_FECOMPOSITE_OPERATOR_OUT = 3;
12   public static final short SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
13   public static final short SVG_FECOMPOSITE_OPERATOR_XOR = 5;
14   public static final short SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
15
16   public SVGAnimatedString getIn1( );
17   public SVGAnimatedString getIn2( );
18   public SVGAnimatedEnumeration getOperator( );
19   public SVGAnimatedNumber getK1( );
20   public SVGAnimatedNumber getK2( );
21   public SVGAnimatedNumber getK3( );
22   public SVGAnimatedNumber getK4( );
23 }
24
Popular Tags