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