1 2 package org.w3c.dom.svg; 3 4 public interface SVGFEConvolveMatrixElement extends 5 SVGElement, 6 SVGFilterPrimitiveStandardAttributes { 7 public static final short SVG_EDGEMODE_UNKNOWN = 0; 9 public static final short SVG_EDGEMODE_DUPLICATE = 1; 10 public static final short SVG_EDGEMODE_WRAP = 2; 11 public static final short SVG_EDGEMODE_NONE = 3; 12 13 public SVGAnimatedInteger getOrderX( ); 14 public SVGAnimatedInteger getOrderY( ); 15 public SVGAnimatedNumberList getKernelMatrix( ); 16 public SVGAnimatedNumber getDivisor( ); 17 public SVGAnimatedNumber getBias( ); 18 public SVGAnimatedInteger getTargetX( ); 19 public SVGAnimatedInteger getTargetY( ); 20 public SVGAnimatedEnumeration getEdgeMode( ); 21 public SVGAnimatedLength getKernelUnitLengthX( ); 22 public SVGAnimatedLength getKernelUnitLengthY( ); 23 public SVGAnimatedBoolean getPreserveAlpha( ); 24 } 25 | Popular Tags |