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