OLD | NEW |
1 | 1 |
2 class _SVGFEConvolveMatrixElementJs extends _SVGElementJs implements SVGFEConvol
veMatrixElement native "*SVGFEConvolveMatrixElement" { | 2 class _SVGFEConvolveMatrixElementJs extends _SVGElementJs implements SVGFEConvol
veMatrixElement native "*SVGFEConvolveMatrixElement" { |
3 | 3 |
4 static final int SVG_EDGEMODE_DUPLICATE = 1; | 4 static final int SVG_EDGEMODE_DUPLICATE = 1; |
5 | 5 |
6 static final int SVG_EDGEMODE_NONE = 3; | 6 static final int SVG_EDGEMODE_NONE = 3; |
7 | 7 |
8 static final int SVG_EDGEMODE_UNKNOWN = 0; | 8 static final int SVG_EDGEMODE_UNKNOWN = 0; |
9 | 9 |
10 static final int SVG_EDGEMODE_WRAP = 2; | 10 static final int SVG_EDGEMODE_WRAP = 2; |
11 | 11 |
12 _SVGAnimatedNumberJs get bias() native "return this.bias;"; | 12 final _SVGAnimatedNumberJs bias; |
13 | 13 |
14 _SVGAnimatedNumberJs get divisor() native "return this.divisor;"; | 14 final _SVGAnimatedNumberJs divisor; |
15 | 15 |
16 _SVGAnimatedEnumerationJs get edgeMode() native "return this.edgeMode;"; | 16 final _SVGAnimatedEnumerationJs edgeMode; |
17 | 17 |
18 _SVGAnimatedStringJs get in1() native "return this.in1;"; | 18 final _SVGAnimatedStringJs in1; |
19 | 19 |
20 _SVGAnimatedNumberListJs get kernelMatrix() native "return this.kernelMatrix;"
; | 20 final _SVGAnimatedNumberListJs kernelMatrix; |
21 | 21 |
22 _SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLen
gthX;"; | 22 final _SVGAnimatedNumberJs kernelUnitLengthX; |
23 | 23 |
24 _SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLen
gthY;"; | 24 final _SVGAnimatedNumberJs kernelUnitLengthY; |
25 | 25 |
26 _SVGAnimatedIntegerJs get orderX() native "return this.orderX;"; | 26 final _SVGAnimatedIntegerJs orderX; |
27 | 27 |
28 _SVGAnimatedIntegerJs get orderY() native "return this.orderY;"; | 28 final _SVGAnimatedIntegerJs orderY; |
29 | 29 |
30 _SVGAnimatedBooleanJs get preserveAlpha() native "return this.preserveAlpha;"; | 30 final _SVGAnimatedBooleanJs preserveAlpha; |
31 | 31 |
32 _SVGAnimatedIntegerJs get targetX() native "return this.targetX;"; | 32 final _SVGAnimatedIntegerJs targetX; |
33 | 33 |
34 _SVGAnimatedIntegerJs get targetY() native "return this.targetY;"; | 34 final _SVGAnimatedIntegerJs targetY; |
35 | 35 |
36 // From SVGFilterPrimitiveStandardAttributes | 36 // From SVGFilterPrimitiveStandardAttributes |
37 | 37 |
38 _SVGAnimatedLengthJs get height() native "return this.height;"; | 38 final _SVGAnimatedLengthJs height; |
39 | 39 |
40 _SVGAnimatedStringJs get result() native "return this.result;"; | 40 final _SVGAnimatedStringJs result; |
41 | 41 |
42 _SVGAnimatedLengthJs get width() native "return this.width;"; | 42 final _SVGAnimatedLengthJs width; |
43 | 43 |
44 _SVGAnimatedLengthJs get x() native "return this.x;"; | 44 final _SVGAnimatedLengthJs x; |
45 | 45 |
46 _SVGAnimatedLengthJs get y() native "return this.y;"; | 46 final _SVGAnimatedLengthJs y; |
47 | 47 |
48 // From SVGStylable | 48 // From SVGStylable |
49 | 49 |
50 _SVGAnimatedStringJs get className() native "return this.className;"; | 50 final _SVGAnimatedStringJs className; |
51 | 51 |
52 _CSSStyleDeclarationJs get style() native "return this.style;"; | 52 final _CSSStyleDeclarationJs style; |
53 | 53 |
54 _CSSValueJs getPresentationAttribute(String name) native; | 54 _CSSValueJs getPresentationAttribute(String name) native; |
55 } | 55 } |
OLD | NEW |