Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGFECompositeElement.java
2 package org.w3c.dom.svg;
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;
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 }