| 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 _SVGDescElementWrappingImplementation extends _SVGElementWrappingImplement
ation implements SVGDescElement { |
| 8 _SVGDescElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGDescElementWrappingImplementation() native { |
| 11 return new _SVGDescElementWrappingImplementation(); |
| 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 SVGStylable |
| 29 |
| 30 SVGAnimatedString get className() { return _get_className(this); } |
| 31 static SVGAnimatedString _get_className(var _this) native; |
| 32 |
| 33 CSSStyleDeclaration get style() { return _get_style_SVGDescElement(this); } |
| 34 static CSSStyleDeclaration _get_style_SVGDescElement(var _this) native; |
| 35 |
| 36 CSSValue getPresentationAttribute(String name) { |
| 37 return _getPresentationAttribute(this, name); |
| 38 } |
| 39 static CSSValue _getPresentationAttribute(receiver, name) native; |
| 40 |
| 41 String get typeName() { return "SVGDescElement"; } |
| 42 } |
| OLD | NEW |