1 2 package org.w3c.dom.svg; 3 4 public interface SVGFEBlendElement extends 5 SVGElement, 6 SVGFilterPrimitiveStandardAttributes { 7 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; 14 15 public SVGAnimatedString getIn1( ); 16 public SVGAnimatedString getIn2( ); 17 public SVGAnimatedEnumeration getMode( ); 18 } 19 | Popular Tags |