OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 class _SVGImageElementWrappingImplementation extends _SVGElementWrappingImplemen
tation implements SVGImageElement { | |
8 _SVGImageElementWrappingImplementation() : super() {} | |
9 | |
10 static create__SVGImageElementWrappingImplementation() native { | |
11 return new _SVGImageElementWrappingImplementation(); | |
12 } | |
13 | |
14 SVGAnimatedLength get height() { return _get_height(this); } | |
15 static SVGAnimatedLength _get_height(var _this) native; | |
16 | |
17 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return _get_preserv
eAspectRatio(this); } | |
18 static SVGAnimatedPreserveAspectRatio _get_preserveAspectRatio(var _this) nati
ve; | |
19 | |
20 SVGAnimatedLength get width() { return _get_width(this); } | |
21 static SVGAnimatedLength _get_width(var _this) native; | |
22 | |
23 SVGAnimatedLength get x() { return _get_x(this); } | |
24 static SVGAnimatedLength _get_x(var _this) native; | |
25 | |
26 SVGAnimatedLength get y() { return _get_y(this); } | |
27 static SVGAnimatedLength _get_y(var _this) native; | |
28 | |
29 // From SVGURIReference | |
30 | |
31 SVGAnimatedString get href() { return _get_href(this); } | |
32 static SVGAnimatedString _get_href(var _this) native; | |
33 | |
34 // From SVGTests | |
35 | |
36 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this);
} | |
37 static SVGStringList _get_requiredExtensions(var _this) native; | |
38 | |
39 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); } | |
40 static SVGStringList _get_requiredFeatures(var _this) native; | |
41 | |
42 SVGStringList get systemLanguage() { return _get_systemLanguage(this); } | |
43 static SVGStringList _get_systemLanguage(var _this) native; | |
44 | |
45 bool hasExtension(String extension) { | |
46 return _hasExtension(this, extension); | |
47 } | |
48 static bool _hasExtension(receiver, extension) native; | |
49 | |
50 // From SVGLangSpace | |
51 | |
52 String get xmllang() { return _get_xmllang(this); } | |
53 static String _get_xmllang(var _this) native; | |
54 | |
55 void set xmllang(String value) { _set_xmllang(this, value); } | |
56 static void _set_xmllang(var _this, String value) native; | |
57 | |
58 String get xmlspace() { return _get_xmlspace(this); } | |
59 static String _get_xmlspace(var _this) native; | |
60 | |
61 void set xmlspace(String value) { _set_xmlspace(this, value); } | |
62 static void _set_xmlspace(var _this, String value) native; | |
63 | |
64 // From SVGExternalResourcesRequired | |
65 | |
66 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou
rcesRequired(this); } | |
67 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native; | |
68 | |
69 // From SVGStylable | |
70 | |
71 SVGAnimatedString get className() { return _get_className(this); } | |
72 static SVGAnimatedString _get_className(var _this) native; | |
73 | |
74 CSSStyleDeclaration get style() { return _get_style_SVGImageElement(this); } | |
75 static CSSStyleDeclaration _get_style_SVGImageElement(var _this) native; | |
76 | |
77 CSSValue getPresentationAttribute(String name) { | |
78 return _getPresentationAttribute(this, name); | |
79 } | |
80 static CSSValue _getPresentationAttribute(receiver, name) native; | |
81 | |
82 // From SVGTransformable | |
83 | |
84 SVGAnimatedTransformList get transform() { return _get_transform(this); } | |
85 static SVGAnimatedTransformList _get_transform(var _this) native; | |
86 | |
87 // From SVGLocatable | |
88 | |
89 SVGElement get farthestViewportElement() { return _get_farthestViewportElement
(this); } | |
90 static SVGElement _get_farthestViewportElement(var _this) native; | |
91 | |
92 SVGElement get nearestViewportElement() { return _get_nearestViewportElement(t
his); } | |
93 static SVGElement _get_nearestViewportElement(var _this) native; | |
94 | |
95 SVGRect getBBox() { | |
96 return _getBBox(this); | |
97 } | |
98 static SVGRect _getBBox(receiver) native; | |
99 | |
100 SVGMatrix getCTM() { | |
101 return _getCTM(this); | |
102 } | |
103 static SVGMatrix _getCTM(receiver) native; | |
104 | |
105 SVGMatrix getScreenCTM() { | |
106 return _getScreenCTM(this); | |
107 } | |
108 static SVGMatrix _getScreenCTM(receiver) native; | |
109 | |
110 SVGMatrix getTransformToElement(SVGElement element) { | |
111 return _getTransformToElement(this, element); | |
112 } | |
113 static SVGMatrix _getTransformToElement(receiver, element) native; | |
114 | |
115 String get typeName() { return "SVGImageElement"; } | |
116 } | |
OLD | NEW |