| 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 _SVGScriptElementWrappingImplementation extends _SVGElementWrappingImpleme
ntation implements SVGScriptElement { |
| 8 _SVGScriptElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGScriptElementWrappingImplementation() native { |
| 11 return new _SVGScriptElementWrappingImplementation(); |
| 12 } |
| 13 |
| 14 String get type() { return _get_type(this); } |
| 15 static String _get_type(var _this) native; |
| 16 |
| 17 void set type(String value) { _set_type(this, value); } |
| 18 static void _set_type(var _this, String value) native; |
| 19 |
| 20 // From SVGURIReference |
| 21 |
| 22 SVGAnimatedString get href() { return _get_href(this); } |
| 23 static SVGAnimatedString _get_href(var _this) native; |
| 24 |
| 25 // From SVGExternalResourcesRequired |
| 26 |
| 27 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou
rcesRequired(this); } |
| 28 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native; |
| 29 |
| 30 String get typeName() { return "SVGScriptElement"; } |
| 31 } |
| OLD | NEW |