summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFEBlendElement.java
blob: e80bc2188390a4bb1dbde795fa8c4c550e21f173 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

package org.w3c.dom.svg;

public interface SVGFEBlendElement extends 
               SVGElement,
               SVGFilterPrimitiveStandardAttributes {
  // Blend Mode Types
  public static final short SVG_FEBLEND_MODE_UNKNOWN  = 0;
  public static final short SVG_FEBLEND_MODE_NORMAL   = 1;
  public static final short SVG_FEBLEND_MODE_MULTIPLY = 2;
  public static final short SVG_FEBLEND_MODE_SCREEN   = 3;
  public static final short SVG_FEBLEND_MODE_DARKEN   = 4;
  public static final short SVG_FEBLEND_MODE_LIGHTEN  = 5;

  public SVGAnimatedString      getIn1( );
  public SVGAnimatedString      getIn2( );
  public SVGAnimatedEnumeration getMode( );
}