OLD | NEW |
1 | 1 |
2 class _SVGFEBlendElementJs extends _SVGElementJs implements SVGFEBlendElement na
tive "*SVGFEBlendElement" { | 2 class _SVGFEBlendElementJs extends _SVGElementJs implements SVGFEBlendElement na
tive "*SVGFEBlendElement" { |
3 | 3 |
4 static final int SVG_FEBLEND_MODE_DARKEN = 4; | 4 static final int SVG_FEBLEND_MODE_DARKEN = 4; |
5 | 5 |
6 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; | 6 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; |
7 | 7 |
8 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; | 8 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; |
9 | 9 |
10 static final int SVG_FEBLEND_MODE_NORMAL = 1; | 10 static final int SVG_FEBLEND_MODE_NORMAL = 1; |
11 | 11 |
12 static final int SVG_FEBLEND_MODE_SCREEN = 3; | 12 static final int SVG_FEBLEND_MODE_SCREEN = 3; |
13 | 13 |
14 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; | 14 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; |
15 | 15 |
16 _SVGAnimatedStringJs get in1() native "return this.in1;"; | 16 final _SVGAnimatedStringJs in1; |
17 | 17 |
18 _SVGAnimatedStringJs get in2() native "return this.in2;"; | 18 final _SVGAnimatedStringJs in2; |
19 | 19 |
20 _SVGAnimatedEnumerationJs get mode() native "return this.mode;"; | 20 final _SVGAnimatedEnumerationJs mode; |
21 | 21 |
22 // From SVGFilterPrimitiveStandardAttributes | 22 // From SVGFilterPrimitiveStandardAttributes |
23 | 23 |
24 _SVGAnimatedLengthJs get height() native "return this.height;"; | 24 final _SVGAnimatedLengthJs height; |
25 | 25 |
26 _SVGAnimatedStringJs get result() native "return this.result;"; | 26 final _SVGAnimatedStringJs result; |
27 | 27 |
28 _SVGAnimatedLengthJs get width() native "return this.width;"; | 28 final _SVGAnimatedLengthJs width; |
29 | 29 |
30 _SVGAnimatedLengthJs get x() native "return this.x;"; | 30 final _SVGAnimatedLengthJs x; |
31 | 31 |
32 _SVGAnimatedLengthJs get y() native "return this.y;"; | 32 final _SVGAnimatedLengthJs y; |
33 | 33 |
34 // From SVGStylable | 34 // From SVGStylable |
35 | 35 |
36 _SVGAnimatedStringJs get className() native "return this.className;"; | 36 final _SVGAnimatedStringJs className; |
37 | 37 |
38 _CSSStyleDeclarationJs get style() native "return this.style;"; | 38 final _CSSStyleDeclarationJs style; |
39 | 39 |
40 _CSSValueJs getPresentationAttribute(String name) native; | 40 _CSSValueJs getPresentationAttribute(String name) native; |
41 } | 41 } |
OLD | NEW |