1,32c1,24 < /* < * Copyright (c) 2009 World Wide Web Consortium, < * < * (Massachusetts Institute of Technology, European Research Consortium for < * Informatics and Mathematics, Keio University). All Rights Reserved. This < * work is distributed under the W3C(r) Software License [1] in the hope that < * it will be useful, but WITHOUT ANY WARRANTY; without even the implied < * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. < * < * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 < */ < < package org.w3c.dom.svg; < < public interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes { < SVGAnimatedString getIn1(); < SVGAnimatedInteger getOrderX(); < SVGAnimatedInteger getOrderY(); < SVGAnimatedNumberList getKernelMatrix(); < SVGAnimatedNumber getDivisor(); < SVGAnimatedNumber getBias(); < SVGAnimatedInteger getTargetX(); < SVGAnimatedInteger getTargetY(); < SVGAnimatedEnumeration getEdgeMode(); < SVGAnimatedNumber getKernelUnitLengthX(); < SVGAnimatedNumber getKernelUnitLengthY(); < SVGAnimatedBoolean getPreserveAlpha(); < final short SVG_EDGEMODE_UNKNOWN = 0; < final short SVG_EDGEMODE_DUPLICATE = 1; < final short SVG_EDGEMODE_WRAP = 2; < final short SVG_EDGEMODE_NONE = 3; < } --- > > package org.w3c.dom.svg; > > public interface SVGFEConvolveMatrixElement extends > SVGElement, > SVGFilterPrimitiveStandardAttributes { > // Edge Mode Values > public static final short SVG_EDGEMODE_UNKNOWN = 0; > public static final short SVG_EDGEMODE_DUPLICATE = 1; > public static final short SVG_EDGEMODE_WRAP = 2; > public static final short SVG_EDGEMODE_NONE = 3; > > public SVGAnimatedInteger getOrderX( ); > public SVGAnimatedInteger getOrderY( ); > public SVGAnimatedNumberList getKernelMatrix( ); > public SVGAnimatedNumber getDivisor( ); > public SVGAnimatedNumber getBias( ); > public SVGAnimatedInteger getTargetX( ); > public SVGAnimatedInteger getTargetY( ); > public SVGAnimatedEnumeration getEdgeMode( ); > public SVGAnimatedNumber getKernelUnitLengthX( ); > public SVGAnimatedNumber getKernelUnitLengthY( ); > public SVGAnimatedBoolean getPreserveAlpha( ); > }