1,26c1,19 < /* < * 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 SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes { < SVGAnimatedString getIn1(); < SVGAnimatedString getIn2(); < SVGAnimatedNumber getScale(); < SVGAnimatedEnumeration getXChannelSelector(); < SVGAnimatedEnumeration getYChannelSelector(); < final short SVG_CHANNEL_UNKNOWN = 0; < final short SVG_CHANNEL_R = 1; < final short SVG_CHANNEL_G = 2; < final short SVG_CHANNEL_B = 3; < final short SVG_CHANNEL_A = 4; < } --- > > package org.w3c.dom.svg; > > public interface SVGFEDisplacementMapElement extends > SVGElement, > SVGFilterPrimitiveStandardAttributes { > // Channel Selectors > public static final short SVG_CHANNEL_UNKNOWN = 0; > public static final short SVG_CHANNEL_R = 1; > public static final short SVG_CHANNEL_G = 2; > public static final short SVG_CHANNEL_B = 3; > public static final short SVG_CHANNEL_A = 4; > > public SVGAnimatedString getIn1( ); > public SVGAnimatedString getIn2( ); > public SVGAnimatedNumber getScale( ); > public SVGAnimatedEnumeration getXChannelSelector( ); > public SVGAnimatedEnumeration getYChannelSelector( ); > }