Code

updated spanish.nsh and inkscape.nsi to reflect latest file-changes
[inkscape.git] / trunk / src / bind / java / org / w3c / dom / svg / SVGFEBlendElement.java
2 package org.w3c.dom.svg;
4 public interface SVGFEBlendElement extends 
5                SVGElement,
6                SVGFilterPrimitiveStandardAttributes {
7   // Blend Mode Types
8   public static final short SVG_FEBLEND_MODE_UNKNOWN  = 0;
9   public static final short SVG_FEBLEND_MODE_NORMAL   = 1;
10   public static final short SVG_FEBLEND_MODE_MULTIPLY = 2;
11   public static final short SVG_FEBLEND_MODE_SCREEN   = 3;
12   public static final short SVG_FEBLEND_MODE_DARKEN   = 4;
13   public static final short SVG_FEBLEND_MODE_LIGHTEN  = 5;
15   public SVGAnimatedString      getIn1( );
16   public SVGAnimatedString      getIn2( );
17   public SVGAnimatedEnumeration getMode( );
18 }