summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFEDisplacementMapElement.java
blob: d2270e2190b8ea170e4831ca98d5c23bf192ab57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

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( );
}