OLD | NEW |
1 | 1 |
2 class SVGRectElementJs extends SVGElementJs implements SVGRectElement native "*S
VGRectElement" { | 2 class _SVGRectElementJs extends _SVGElementJs implements SVGRectElement native "
*SVGRectElement" { |
3 | 3 |
4 SVGAnimatedLengthJs get height() native "return this.height;"; | 4 _SVGAnimatedLengthJs get height() native "return this.height;"; |
5 | 5 |
6 SVGAnimatedLengthJs get rx() native "return this.rx;"; | 6 _SVGAnimatedLengthJs get rx() native "return this.rx;"; |
7 | 7 |
8 SVGAnimatedLengthJs get ry() native "return this.ry;"; | 8 _SVGAnimatedLengthJs get ry() native "return this.ry;"; |
9 | 9 |
10 SVGAnimatedLengthJs get width() native "return this.width;"; | 10 _SVGAnimatedLengthJs get width() native "return this.width;"; |
11 | 11 |
12 SVGAnimatedLengthJs get x() native "return this.x;"; | 12 _SVGAnimatedLengthJs get x() native "return this.x;"; |
13 | 13 |
14 SVGAnimatedLengthJs get y() native "return this.y;"; | 14 _SVGAnimatedLengthJs get y() native "return this.y;"; |
15 | 15 |
16 // From SVGTests | 16 // From SVGTests |
17 | 17 |
18 SVGStringListJs get requiredExtensions() native "return this.requiredExtension
s;"; | 18 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio
ns;"; |
19 | 19 |
20 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; | 20 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"
; |
21 | 21 |
22 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; | 22 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; |
23 | 23 |
24 bool hasExtension(String extension) native; | 24 bool hasExtension(String extension) native; |
25 | 25 |
26 // From SVGLangSpace | 26 // From SVGLangSpace |
27 | 27 |
28 String get xmllang() native "return this.xmllang;"; | 28 String get xmllang() native "return this.xmllang;"; |
29 | 29 |
30 void set xmllang(String value) native "this.xmllang = value;"; | 30 void set xmllang(String value) native "this.xmllang = value;"; |
31 | 31 |
32 String get xmlspace() native "return this.xmlspace;"; | 32 String get xmlspace() native "return this.xmlspace;"; |
33 | 33 |
34 void set xmlspace(String value) native "this.xmlspace = value;"; | 34 void set xmlspace(String value) native "this.xmlspace = value;"; |
35 | 35 |
36 // From SVGExternalResourcesRequired | 36 // From SVGExternalResourcesRequired |
37 | 37 |
38 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; | 38 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte
rnalResourcesRequired;"; |
39 | 39 |
40 // From SVGStylable | 40 // From SVGStylable |
41 | 41 |
42 SVGAnimatedStringJs get className() native "return this.className;"; | 42 _SVGAnimatedStringJs get className() native "return this.className;"; |
43 | 43 |
44 CSSStyleDeclarationJs get style() native "return this.style;"; | 44 _CSSStyleDeclarationJs get style() native "return this.style;"; |
45 | 45 |
46 CSSValueJs getPresentationAttribute(String name) native; | 46 _CSSValueJs getPresentationAttribute(String name) native; |
47 | 47 |
48 // From SVGTransformable | 48 // From SVGTransformable |
49 | 49 |
50 SVGAnimatedTransformListJs get transform() native "return this.transform;"; | 50 _SVGAnimatedTransformListJs get transform() native "return this.transform;"; |
51 | 51 |
52 // From SVGLocatable | 52 // From SVGLocatable |
53 | 53 |
54 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor
tElement;"; | 54 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo
rtElement;"; |
55 | 55 |
56 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE
lement;"; | 56 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport
Element;"; |
57 | 57 |
58 SVGRectJs getBBox() native; | 58 _SVGRectJs getBBox() native; |
59 | 59 |
60 SVGMatrixJs getCTM() native; | 60 _SVGMatrixJs getCTM() native; |
61 | 61 |
62 SVGMatrixJs getScreenCTM() native; | 62 _SVGMatrixJs getScreenCTM() native; |
63 | 63 |
64 SVGMatrixJs getTransformToElement(SVGElementJs element) native; | 64 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
65 } | 65 } |
OLD | NEW |