org.w3c.dom.svg.SVGFECompositeElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svg-dom-java Show documentation
Show all versions of svg-dom-java Show documentation
The SVG DOM bindings for Java, written by the W3C, distributed
by aXSL.
The newest version!
package org.w3c.dom.svg;
public interface SVGFECompositeElement extends
SVGElement,
SVGFilterPrimitiveStandardAttributes {
// Composite Operators
public static final short SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
public static final short SVG_FECOMPOSITE_OPERATOR_OVER = 1;
public static final short SVG_FECOMPOSITE_OPERATOR_IN = 2;
public static final short SVG_FECOMPOSITE_OPERATOR_OUT = 3;
public static final short SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
public static final short SVG_FECOMPOSITE_OPERATOR_XOR = 5;
public static final short SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
public SVGAnimatedString getIn1( );
public SVGAnimatedString getIn2( );
public SVGAnimatedEnumeration getOperator( );
public SVGAnimatedNumber getK1( );
public SVGAnimatedNumber getK2( );
public SVGAnimatedNumber getK3( );
public SVGAnimatedNumber getK4( );
}