OLD | NEW |
1 | 1 |
2 class SVGGlyphRefElementJs extends SVGElementJs implements SVGGlyphRefElement na
tive "*SVGGlyphRefElement" { | 2 class _SVGGlyphRefElementJs extends _SVGElementJs implements SVGGlyphRefElement
native "*SVGGlyphRefElement" { |
3 | 3 |
4 num get dx() native "return this.dx;"; | 4 num get dx() native "return this.dx;"; |
5 | 5 |
6 void set dx(num value) native "this.dx = value;"; | 6 void set dx(num value) native "this.dx = value;"; |
7 | 7 |
8 num get dy() native "return this.dy;"; | 8 num get dy() native "return this.dy;"; |
9 | 9 |
10 void set dy(num value) native "this.dy = value;"; | 10 void set dy(num value) native "this.dy = value;"; |
11 | 11 |
12 String get format() native "return this.format;"; | 12 String get format() native "return this.format;"; |
13 | 13 |
14 void set format(String value) native "this.format = value;"; | 14 void set format(String value) native "this.format = value;"; |
15 | 15 |
16 String get glyphRef() native "return this.glyphRef;"; | 16 String get glyphRef() native "return this.glyphRef;"; |
17 | 17 |
18 void set glyphRef(String value) native "this.glyphRef = value;"; | 18 void set glyphRef(String value) native "this.glyphRef = value;"; |
19 | 19 |
20 num get x() native "return this.x;"; | 20 num get x() native "return this.x;"; |
21 | 21 |
22 void set x(num value) native "this.x = value;"; | 22 void set x(num value) native "this.x = value;"; |
23 | 23 |
24 num get y() native "return this.y;"; | 24 num get y() native "return this.y;"; |
25 | 25 |
26 void set y(num value) native "this.y = value;"; | 26 void set y(num value) native "this.y = value;"; |
27 | 27 |
28 // From SVGURIReference | 28 // From SVGURIReference |
29 | 29 |
30 SVGAnimatedStringJs get href() native "return this.href;"; | 30 _SVGAnimatedStringJs get href() native "return this.href;"; |
31 | 31 |
32 // From SVGStylable | 32 // From SVGStylable |
33 | 33 |
34 SVGAnimatedStringJs get className() native "return this.className;"; | 34 _SVGAnimatedStringJs get className() native "return this.className;"; |
35 | 35 |
36 CSSStyleDeclarationJs get style() native "return this.style;"; | 36 _CSSStyleDeclarationJs get style() native "return this.style;"; |
37 | 37 |
38 CSSValueJs getPresentationAttribute(String name) native; | 38 _CSSValueJs getPresentationAttribute(String name) native; |
39 } | 39 } |
OLD | NEW |