OLD | NEW |
1 | 1 |
2 class SVGFEDisplacementMapElementJs extends SVGElementJs implements SVGFEDisplac
ementMapElement native "*SVGFEDisplacementMapElement" { | 2 class _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl
acementMapElement native "*SVGFEDisplacementMapElement" { |
3 | 3 |
4 static final int SVG_CHANNEL_A = 4; | 4 static final int SVG_CHANNEL_A = 4; |
5 | 5 |
6 static final int SVG_CHANNEL_B = 3; | 6 static final int SVG_CHANNEL_B = 3; |
7 | 7 |
8 static final int SVG_CHANNEL_G = 2; | 8 static final int SVG_CHANNEL_G = 2; |
9 | 9 |
10 static final int SVG_CHANNEL_R = 1; | 10 static final int SVG_CHANNEL_R = 1; |
11 | 11 |
12 static final int SVG_CHANNEL_UNKNOWN = 0; | 12 static final int SVG_CHANNEL_UNKNOWN = 0; |
13 | 13 |
14 SVGAnimatedStringJs get in1() native "return this.in1;"; | 14 _SVGAnimatedStringJs get in1() native "return this.in1;"; |
15 | 15 |
16 SVGAnimatedStringJs get in2() native "return this.in2;"; | 16 _SVGAnimatedStringJs get in2() native "return this.in2;"; |
17 | 17 |
18 SVGAnimatedNumberJs get scale() native "return this.scale;"; | 18 _SVGAnimatedNumberJs get scale() native "return this.scale;"; |
19 | 19 |
20 SVGAnimatedEnumerationJs get xChannelSelector() native "return this.xChannelSe
lector;"; | 20 _SVGAnimatedEnumerationJs get xChannelSelector() native "return this.xChannelS
elector;"; |
21 | 21 |
22 SVGAnimatedEnumerationJs get yChannelSelector() native "return this.yChannelSe
lector;"; | 22 _SVGAnimatedEnumerationJs get yChannelSelector() native "return this.yChannelS
elector;"; |
23 | 23 |
24 // From SVGFilterPrimitiveStandardAttributes | 24 // From SVGFilterPrimitiveStandardAttributes |
25 | 25 |
26 SVGAnimatedLengthJs get height() native "return this.height;"; | 26 _SVGAnimatedLengthJs get height() native "return this.height;"; |
27 | 27 |
28 SVGAnimatedStringJs get result() native "return this.result;"; | 28 _SVGAnimatedStringJs get result() native "return this.result;"; |
29 | 29 |
30 SVGAnimatedLengthJs get width() native "return this.width;"; | 30 _SVGAnimatedLengthJs get width() native "return this.width;"; |
31 | 31 |
32 SVGAnimatedLengthJs get x() native "return this.x;"; | 32 _SVGAnimatedLengthJs get x() native "return this.x;"; |
33 | 33 |
34 SVGAnimatedLengthJs get y() native "return this.y;"; | 34 _SVGAnimatedLengthJs get y() native "return this.y;"; |
35 | 35 |
36 // From SVGStylable | 36 // From SVGStylable |
37 | 37 |
38 SVGAnimatedStringJs get className() native "return this.className;"; | 38 _SVGAnimatedStringJs get className() native "return this.className;"; |
39 | 39 |
40 CSSStyleDeclarationJs get style() native "return this.style;"; | 40 _CSSStyleDeclarationJs get style() native "return this.style;"; |
41 | 41 |
42 CSSValueJs getPresentationAttribute(String name) native; | 42 _CSSValueJs getPresentationAttribute(String name) native; |
43 } | 43 } |
OLD | NEW |