KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGFEDisplacementMapElement


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFEDisplacementMapElement extends
5                SVGElement,
6                SVGFilterPrimitiveStandardAttributes {
7   // Channel Selectors
8
public static final short SVG_CHANNEL_UNKNOWN = 0;
9   public static final short SVG_CHANNEL_R = 1;
10   public static final short SVG_CHANNEL_G = 2;
11   public static final short SVG_CHANNEL_B = 3;
12   public static final short SVG_CHANNEL_A = 4;
13
14   public SVGAnimatedString getIn1( );
15   public SVGAnimatedString getIn2( );
16   public SVGAnimatedNumber getScale( );
17   public SVGAnimatedEnumeration getXChannelSelector( );
18   public SVGAnimatedEnumeration getYChannelSelector( );
19 }
20
Popular Tags