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