| 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 _SVGElementWrappingImplementation extends _ElementWrappingImplementation i
mplements SVGElement { | |
| 8 _SVGElementWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__SVGElementWrappingImplementation() native { | |
| 11 return new _SVGElementWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 String get id() { return _get_id(this); } | |
| 15 static String _get_id(var _this) native; | |
| 16 | |
| 17 void set id(String value) { _set_id(this, value); } | |
| 18 static void _set_id(var _this, String value) native; | |
| 19 | |
| 20 SVGSVGElement get ownerSVGElement() { return _get_ownerSVGElement(this); } | |
| 21 static SVGSVGElement _get_ownerSVGElement(var _this) native; | |
| 22 | |
| 23 SVGElement get viewportElement() { return _get_viewportElement(this); } | |
| 24 static SVGElement _get_viewportElement(var _this) native; | |
| 25 | |
| 26 String get xmlbase() { return _get_xmlbase(this); } | |
| 27 static String _get_xmlbase(var _this) native; | |
| 28 | |
| 29 void set xmlbase(String value) { _set_xmlbase(this, value); } | |
| 30 static void _set_xmlbase(var _this, String value) native; | |
| 31 | |
| 32 String get typeName() { return "SVGElement"; } | |
| 33 } | |
| OLD | NEW |