| 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 _SVGSymbolElementWrappingImplementation extends _SVGElementWrappingImpleme
ntation implements SVGSymbolElement { |
| 8 _SVGSymbolElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGSymbolElementWrappingImplementation() native { |
| 11 return new _SVGSymbolElementWrappingImplementation(); |
| 12 } |
| 13 |
| 14 // From SVGLangSpace |
| 15 |
| 16 String get xmllang() { return _get_xmllang(this); } |
| 17 static String _get_xmllang(var _this) native; |
| 18 |
| 19 void set xmllang(String value) { _set_xmllang(this, value); } |
| 20 static void _set_xmllang(var _this, String value) native; |
| 21 |
| 22 String get xmlspace() { return _get_xmlspace(this); } |
| 23 static String _get_xmlspace(var _this) native; |
| 24 |
| 25 void set xmlspace(String value) { _set_xmlspace(this, value); } |
| 26 static void _set_xmlspace(var _this, String value) native; |
| 27 |
| 28 // From SVGExternalResourcesRequired |
| 29 |
| 30 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou
rcesRequired(this); } |
| 31 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native; |
| 32 |
| 33 // From SVGStylable |
| 34 |
| 35 SVGAnimatedString get className() { return _get_className(this); } |
| 36 static SVGAnimatedString _get_className(var _this) native; |
| 37 |
| 38 CSSStyleDeclaration get style() { return _get_style_SVGSymbolElement(this); } |
| 39 static CSSStyleDeclaration _get_style_SVGSymbolElement(var _this) native; |
| 40 |
| 41 CSSValue getPresentationAttribute(String name) { |
| 42 return _getPresentationAttribute(this, name); |
| 43 } |
| 44 static CSSValue _getPresentationAttribute(receiver, name) native; |
| 45 |
| 46 // From SVGFitToViewBox |
| 47 |
| 48 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return _get_preserv
eAspectRatio(this); } |
| 49 static SVGAnimatedPreserveAspectRatio _get_preserveAspectRatio(var _this) nati
ve; |
| 50 |
| 51 SVGAnimatedRect get viewBox() { return _get_viewBox(this); } |
| 52 static SVGAnimatedRect _get_viewBox(var _this) native; |
| 53 |
| 54 String get typeName() { return "SVGSymbolElement"; } |
| 55 } |
| OLD | NEW |