OLD | NEW |
1 | 1 |
2 class SVGUseElementJs extends SVGElementJs implements SVGUseElement native "*SVG
UseElement" { | 2 class _SVGUseElementJs extends _SVGElementJs implements SVGUseElement native "*S
VGUseElement" { |
3 | 3 |
4 SVGElementInstanceJs get animatedInstanceRoot() native "return this.animatedIn
stanceRoot;"; | 4 _SVGElementInstanceJs get animatedInstanceRoot() native "return this.animatedI
nstanceRoot;"; |
5 | 5 |
6 SVGAnimatedLengthJs get height() native "return this.height;"; | 6 _SVGAnimatedLengthJs get height() native "return this.height;"; |
7 | 7 |
8 SVGElementInstanceJs get instanceRoot() native "return this.instanceRoot;"; | 8 _SVGElementInstanceJs get instanceRoot() native "return this.instanceRoot;"; |
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 SVGURIReference | 16 // From SVGURIReference |
17 | 17 |
18 SVGAnimatedStringJs get href() native "return this.href;"; | 18 _SVGAnimatedStringJs get href() native "return this.href;"; |
19 | 19 |
20 // From SVGTests | 20 // From SVGTests |
21 | 21 |
22 SVGStringListJs get requiredExtensions() native "return this.requiredExtension
s;"; | 22 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio
ns;"; |
23 | 23 |
24 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; | 24 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"
; |
25 | 25 |
26 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; | 26 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; |
27 | 27 |
28 bool hasExtension(String extension) native; | 28 bool hasExtension(String extension) native; |
29 | 29 |
30 // From SVGLangSpace | 30 // From SVGLangSpace |
31 | 31 |
32 String get xmllang() native "return this.xmllang;"; | 32 String get xmllang() native "return this.xmllang;"; |
33 | 33 |
34 void set xmllang(String value) native "this.xmllang = value;"; | 34 void set xmllang(String value) native "this.xmllang = value;"; |
35 | 35 |
36 String get xmlspace() native "return this.xmlspace;"; | 36 String get xmlspace() native "return this.xmlspace;"; |
37 | 37 |
38 void set xmlspace(String value) native "this.xmlspace = value;"; | 38 void set xmlspace(String value) native "this.xmlspace = value;"; |
39 | 39 |
40 // From SVGExternalResourcesRequired | 40 // From SVGExternalResourcesRequired |
41 | 41 |
42 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; | 42 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte
rnalResourcesRequired;"; |
43 | 43 |
44 // From SVGStylable | 44 // From SVGStylable |
45 | 45 |
46 SVGAnimatedStringJs get className() native "return this.className;"; | 46 _SVGAnimatedStringJs get className() native "return this.className;"; |
47 | 47 |
48 CSSStyleDeclarationJs get style() native "return this.style;"; | 48 _CSSStyleDeclarationJs get style() native "return this.style;"; |
49 | 49 |
50 CSSValueJs getPresentationAttribute(String name) native; | 50 _CSSValueJs getPresentationAttribute(String name) native; |
51 | 51 |
52 // From SVGTransformable | 52 // From SVGTransformable |
53 | 53 |
54 SVGAnimatedTransformListJs get transform() native "return this.transform;"; | 54 _SVGAnimatedTransformListJs get transform() native "return this.transform;"; |
55 | 55 |
56 // From SVGLocatable | 56 // From SVGLocatable |
57 | 57 |
58 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor
tElement;"; | 58 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo
rtElement;"; |
59 | 59 |
60 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE
lement;"; | 60 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport
Element;"; |
61 | 61 |
62 SVGRectJs getBBox() native; | 62 _SVGRectJs getBBox() native; |
63 | 63 |
64 SVGMatrixJs getCTM() native; | 64 _SVGMatrixJs getCTM() native; |
65 | 65 |
66 SVGMatrixJs getScreenCTM() native; | 66 _SVGMatrixJs getScreenCTM() native; |
67 | 67 |
68 SVGMatrixJs getTransformToElement(SVGElementJs element) native; | 68 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
69 } | 69 } |
OLD | NEW |