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