| 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 _SVGGlyphRefElementWrappingImplementation extends _SVGElementWrappingImple
mentation implements SVGGlyphRefElement { |
| 8 _SVGGlyphRefElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGGlyphRefElementWrappingImplementation() native { |
| 11 return new _SVGGlyphRefElementWrappingImplementation(); |
| 12 } |
| 13 |
| 14 num get dx() { return _get_dx(this); } |
| 15 static num _get_dx(var _this) native; |
| 16 |
| 17 void set dx(num value) { _set_dx(this, value); } |
| 18 static void _set_dx(var _this, num value) native; |
| 19 |
| 20 num get dy() { return _get_dy(this); } |
| 21 static num _get_dy(var _this) native; |
| 22 |
| 23 void set dy(num value) { _set_dy(this, value); } |
| 24 static void _set_dy(var _this, num value) native; |
| 25 |
| 26 String get format() { return _get_format(this); } |
| 27 static String _get_format(var _this) native; |
| 28 |
| 29 void set format(String value) { _set_format(this, value); } |
| 30 static void _set_format(var _this, String value) native; |
| 31 |
| 32 String get glyphRef() { return _get_glyphRef(this); } |
| 33 static String _get_glyphRef(var _this) native; |
| 34 |
| 35 void set glyphRef(String value) { _set_glyphRef(this, value); } |
| 36 static void _set_glyphRef(var _this, String value) native; |
| 37 |
| 38 num get x() { return _get_x(this); } |
| 39 static num _get_x(var _this) native; |
| 40 |
| 41 void set x(num value) { _set_x(this, value); } |
| 42 static void _set_x(var _this, num value) native; |
| 43 |
| 44 num get y() { return _get_y(this); } |
| 45 static num _get_y(var _this) native; |
| 46 |
| 47 void set y(num value) { _set_y(this, value); } |
| 48 static void _set_y(var _this, num value) native; |
| 49 |
| 50 // From SVGURIReference |
| 51 |
| 52 SVGAnimatedString get href() { return _get_href(this); } |
| 53 static SVGAnimatedString _get_href(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_SVGGlyphRefElement(this);
} |
| 61 static CSSStyleDeclaration _get_style_SVGGlyphRefElement(var _this) native; |
| 62 |
| 63 CSSValue getPresentationAttribute(String name) { |
| 64 return _getPresentationAttribute(this, name); |
| 65 } |
| 66 static CSSValue _getPresentationAttribute(receiver, name) native; |
| 67 |
| 68 String get typeName() { return "SVGGlyphRefElement"; } |
| 69 } |
| OLD | NEW |