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 _SVGLineElementWrappingImplementation extends _SVGElementWrappingImplement
ation implements SVGLineElement { | |
8 _SVGLineElementWrappingImplementation() : super() {} | |
9 | |
10 static create__SVGLineElementWrappingImplementation() native { | |
11 return new _SVGLineElementWrappingImplementation(); | |
12 } | |
13 | |
14 SVGAnimatedLength get x1() { return _get_x1(this); } | |
15 static SVGAnimatedLength _get_x1(var _this) native; | |
16 | |
17 SVGAnimatedLength get x2() { return _get_x2(this); } | |
18 static SVGAnimatedLength _get_x2(var _this) native; | |
19 | |
20 SVGAnimatedLength get y1() { return _get_y1(this); } | |
21 static SVGAnimatedLength _get_y1(var _this) native; | |
22 | |
23 SVGAnimatedLength get y2() { return _get_y2(this); } | |
24 static SVGAnimatedLength _get_y2(var _this) native; | |
25 | |
26 // From SVGTests | |
27 | |
28 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this);
} | |
29 static SVGStringList _get_requiredExtensions(var _this) native; | |
30 | |
31 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); } | |
32 static SVGStringList _get_requiredFeatures(var _this) native; | |
33 | |
34 SVGStringList get systemLanguage() { return _get_systemLanguage(this); } | |
35 static SVGStringList _get_systemLanguage(var _this) native; | |
36 | |
37 bool hasExtension(String extension) { | |
38 return _hasExtension(this, extension); | |
39 } | |
40 static bool _hasExtension(receiver, extension) native; | |
41 | |
42 // From SVGLangSpace | |
43 | |
44 String get xmllang() { return _get_xmllang(this); } | |
45 static String _get_xmllang(var _this) native; | |
46 | |
47 void set xmllang(String value) { _set_xmllang(this, value); } | |
48 static void _set_xmllang(var _this, String value) native; | |
49 | |
50 String get xmlspace() { return _get_xmlspace(this); } | |
51 static String _get_xmlspace(var _this) native; | |
52 | |
53 void set xmlspace(String value) { _set_xmlspace(this, value); } | |
54 static void _set_xmlspace(var _this, String value) native; | |
55 | |
56 // From SVGExternalResourcesRequired | |
57 | |
58 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou
rcesRequired(this); } | |
59 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native; | |
60 | |
61 // From SVGStylable | |
62 | |
63 SVGAnimatedString get className() { return _get_className(this); } | |
64 static SVGAnimatedString _get_className(var _this) native; | |
65 | |
66 CSSStyleDeclaration get style() { return _get_style_SVGLineElement(this); } | |
67 static CSSStyleDeclaration _get_style_SVGLineElement(var _this) native; | |
68 | |
69 CSSValue getPresentationAttribute(String name) { | |
70 return _getPresentationAttribute(this, name); | |
71 } | |
72 static CSSValue _getPresentationAttribute(receiver, name) native; | |
73 | |
74 // From SVGTransformable | |
75 | |
76 SVGAnimatedTransformList get transform() { return _get_transform(this); } | |
77 static SVGAnimatedTransformList _get_transform(var _this) native; | |
78 | |
79 // From SVGLocatable | |
80 | |
81 SVGElement get farthestViewportElement() { return _get_farthestViewportElement
(this); } | |
82 static SVGElement _get_farthestViewportElement(var _this) native; | |
83 | |
84 SVGElement get nearestViewportElement() { return _get_nearestViewportElement(t
his); } | |
85 static SVGElement _get_nearestViewportElement(var _this) native; | |
86 | |
87 SVGRect getBBox() { | |
88 return _getBBox(this); | |
89 } | |
90 static SVGRect _getBBox(receiver) native; | |
91 | |
92 SVGMatrix getCTM() { | |
93 return _getCTM(this); | |
94 } | |
95 static SVGMatrix _getCTM(receiver) native; | |
96 | |
97 SVGMatrix getScreenCTM() { | |
98 return _getScreenCTM(this); | |
99 } | |
100 static SVGMatrix _getScreenCTM(receiver) native; | |
101 | |
102 SVGMatrix getTransformToElement(SVGElement element) { | |
103 return _getTransformToElement(this, element); | |
104 } | |
105 static SVGMatrix _getTransformToElement(receiver, element) native; | |
106 | |
107 String get typeName() { return "SVGLineElement"; } | |
108 } | |
OLD | NEW |