OLD | NEW |
1 | 1 |
2 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence
Element native "*SVGFETurbulenceElement" { | 2 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence
Element native "*SVGFETurbulenceElement" { |
3 | 3 |
4 static final int SVG_STITCHTYPE_NOSTITCH = 2; | 4 static final int SVG_STITCHTYPE_NOSTITCH = 2; |
5 | 5 |
6 static final int SVG_STITCHTYPE_STITCH = 1; | 6 static final int SVG_STITCHTYPE_STITCH = 1; |
7 | 7 |
8 static final int SVG_STITCHTYPE_UNKNOWN = 0; | 8 static final int SVG_STITCHTYPE_UNKNOWN = 0; |
9 | 9 |
10 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; | 10 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; |
11 | 11 |
12 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; | 12 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
13 | 13 |
14 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; | 14 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
15 | 15 |
16 _SVGAnimatedNumberJs get baseFrequencyX() native "return this.baseFrequencyX;"
; | 16 final _SVGAnimatedNumberJs baseFrequencyX; |
17 | 17 |
18 _SVGAnimatedNumberJs get baseFrequencyY() native "return this.baseFrequencyY;"
; | 18 final _SVGAnimatedNumberJs baseFrequencyY; |
19 | 19 |
20 _SVGAnimatedIntegerJs get numOctaves() native "return this.numOctaves;"; | 20 final _SVGAnimatedIntegerJs numOctaves; |
21 | 21 |
22 _SVGAnimatedNumberJs get seed() native "return this.seed;"; | 22 final _SVGAnimatedNumberJs seed; |
23 | 23 |
24 _SVGAnimatedEnumerationJs get stitchTiles() native "return this.stitchTiles;"; | 24 final _SVGAnimatedEnumerationJs stitchTiles; |
25 | 25 |
26 _SVGAnimatedEnumerationJs get type() native "return this.type;"; | 26 final _SVGAnimatedEnumerationJs type; |
27 | 27 |
28 // From SVGFilterPrimitiveStandardAttributes | 28 // From SVGFilterPrimitiveStandardAttributes |
29 | 29 |
30 _SVGAnimatedLengthJs get height() native "return this.height;"; | 30 final _SVGAnimatedLengthJs height; |
31 | 31 |
32 _SVGAnimatedStringJs get result() native "return this.result;"; | 32 final _SVGAnimatedStringJs result; |
33 | 33 |
34 _SVGAnimatedLengthJs get width() native "return this.width;"; | 34 final _SVGAnimatedLengthJs width; |
35 | 35 |
36 _SVGAnimatedLengthJs get x() native "return this.x;"; | 36 final _SVGAnimatedLengthJs x; |
37 | 37 |
38 _SVGAnimatedLengthJs get y() native "return this.y;"; | 38 final _SVGAnimatedLengthJs y; |
39 | 39 |
40 // From SVGStylable | 40 // From SVGStylable |
41 | 41 |
42 _SVGAnimatedStringJs get className() native "return this.className;"; | 42 final _SVGAnimatedStringJs className; |
43 | 43 |
44 _CSSStyleDeclarationJs get style() native "return this.style;"; | 44 final _CSSStyleDeclarationJs style; |
45 | 45 |
46 _CSSValueJs getPresentationAttribute(String name) native; | 46 _CSSValueJs getPresentationAttribute(String name) native; |
47 } | 47 } |
OLD | NEW |