OLD | NEW |
1 | 1 |
2 class SVGFEConvolveMatrixElementJs extends SVGElementJs implements SVGFEConvolve
MatrixElement 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 _SVGAnimatedNumberJs get bias() native "return this.bias;"; |
13 | 13 |
14 SVGAnimatedNumberJs get divisor() native "return this.divisor;"; | 14 _SVGAnimatedNumberJs get divisor() native "return this.divisor;"; |
15 | 15 |
16 SVGAnimatedEnumerationJs get edgeMode() native "return this.edgeMode;"; | 16 _SVGAnimatedEnumerationJs get edgeMode() native "return this.edgeMode;"; |
17 | 17 |
18 SVGAnimatedStringJs get in1() native "return this.in1;"; | 18 _SVGAnimatedStringJs get in1() native "return this.in1;"; |
19 | 19 |
20 SVGAnimatedNumberListJs get kernelMatrix() native "return this.kernelMatrix;"; | 20 _SVGAnimatedNumberListJs get kernelMatrix() native "return this.kernelMatrix;"
; |
21 | 21 |
22 SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLeng
thX;"; | 22 _SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLen
gthX;"; |
23 | 23 |
24 SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLeng
thY;"; | 24 _SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLen
gthY;"; |
25 | 25 |
26 SVGAnimatedIntegerJs get orderX() native "return this.orderX;"; | 26 _SVGAnimatedIntegerJs get orderX() native "return this.orderX;"; |
27 | 27 |
28 SVGAnimatedIntegerJs get orderY() native "return this.orderY;"; | 28 _SVGAnimatedIntegerJs get orderY() native "return this.orderY;"; |
29 | 29 |
30 SVGAnimatedBooleanJs get preserveAlpha() native "return this.preserveAlpha;"; | 30 _SVGAnimatedBooleanJs get preserveAlpha() native "return this.preserveAlpha;"; |
31 | 31 |
32 SVGAnimatedIntegerJs get targetX() native "return this.targetX;"; | 32 _SVGAnimatedIntegerJs get targetX() native "return this.targetX;"; |
33 | 33 |
34 SVGAnimatedIntegerJs get targetY() native "return this.targetY;"; | 34 _SVGAnimatedIntegerJs get targetY() native "return this.targetY;"; |
35 | 35 |
36 // From SVGFilterPrimitiveStandardAttributes | 36 // From SVGFilterPrimitiveStandardAttributes |
37 | 37 |
38 SVGAnimatedLengthJs get height() native "return this.height;"; | 38 _SVGAnimatedLengthJs get height() native "return this.height;"; |
39 | 39 |
40 SVGAnimatedStringJs get result() native "return this.result;"; | 40 _SVGAnimatedStringJs get result() native "return this.result;"; |
41 | 41 |
42 SVGAnimatedLengthJs get width() native "return this.width;"; | 42 _SVGAnimatedLengthJs get width() native "return this.width;"; |
43 | 43 |
44 SVGAnimatedLengthJs get x() native "return this.x;"; | 44 _SVGAnimatedLengthJs get x() native "return this.x;"; |
45 | 45 |
46 SVGAnimatedLengthJs get y() native "return this.y;"; | 46 _SVGAnimatedLengthJs get y() native "return this.y;"; |
47 | 47 |
48 // From SVGStylable | 48 // From SVGStylable |
49 | 49 |
50 SVGAnimatedStringJs get className() native "return this.className;"; | 50 _SVGAnimatedStringJs get className() native "return this.className;"; |
51 | 51 |
52 CSSStyleDeclarationJs get style() native "return this.style;"; | 52 _CSSStyleDeclarationJs get style() native "return this.style;"; |
53 | 53 |
54 CSSValueJs getPresentationAttribute(String name) native; | 54 _CSSValueJs getPresentationAttribute(String name) native; |
55 } | 55 } |
OLD | NEW |