| 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 _SVGPatternElementWrappingImplementation extends _SVGElementWrappingImplem
entation implements SVGPatternElement { |
| 8 _SVGPatternElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGPatternElementWrappingImplementation() native { |
| 11 return new _SVGPatternElementWrappingImplementation(); |
| 12 } |
| 13 |
| 14 SVGAnimatedLength get height() { return _get_height(this); } |
| 15 static SVGAnimatedLength _get_height(var _this) native; |
| 16 |
| 17 SVGAnimatedEnumeration get patternContentUnits() { return _get_patternContentU
nits(this); } |
| 18 static SVGAnimatedEnumeration _get_patternContentUnits(var _this) native; |
| 19 |
| 20 SVGAnimatedTransformList get patternTransform() { return _get_patternTransform
(this); } |
| 21 static SVGAnimatedTransformList _get_patternTransform(var _this) native; |
| 22 |
| 23 SVGAnimatedEnumeration get patternUnits() { return _get_patternUnits(this); } |
| 24 static SVGAnimatedEnumeration _get_patternUnits(var _this) native; |
| 25 |
| 26 SVGAnimatedLength get width() { return _get_width(this); } |
| 27 static SVGAnimatedLength _get_width(var _this) native; |
| 28 |
| 29 SVGAnimatedLength get x() { return _get_x(this); } |
| 30 static SVGAnimatedLength _get_x(var _this) native; |
| 31 |
| 32 SVGAnimatedLength get y() { return _get_y(this); } |
| 33 static SVGAnimatedLength _get_y(var _this) native; |
| 34 |
| 35 // From SVGURIReference |
| 36 |
| 37 SVGAnimatedString get href() { return _get_href(this); } |
| 38 static SVGAnimatedString _get_href(var _this) native; |
| 39 |
| 40 // From SVGTests |
| 41 |
| 42 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this);
} |
| 43 static SVGStringList _get_requiredExtensions(var _this) native; |
| 44 |
| 45 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); } |
| 46 static SVGStringList _get_requiredFeatures(var _this) native; |
| 47 |
| 48 SVGStringList get systemLanguage() { return _get_systemLanguage(this); } |
| 49 static SVGStringList _get_systemLanguage(var _this) native; |
| 50 |
| 51 bool hasExtension(String extension) { |
| 52 return _hasExtension(this, extension); |
| 53 } |
| 54 static bool _hasExtension(receiver, extension) native; |
| 55 |
| 56 // From SVGLangSpace |
| 57 |
| 58 String get xmllang() { return _get_xmllang(this); } |
| 59 static String _get_xmllang(var _this) native; |
| 60 |
| 61 void set xmllang(String value) { _set_xmllang(this, value); } |
| 62 static void _set_xmllang(var _this, String value) native; |
| 63 |
| 64 String get xmlspace() { return _get_xmlspace(this); } |
| 65 static String _get_xmlspace(var _this) native; |
| 66 |
| 67 void set xmlspace(String value) { _set_xmlspace(this, value); } |
| 68 static void _set_xmlspace(var _this, String value) native; |
| 69 |
| 70 // From SVGExternalResourcesRequired |
| 71 |
| 72 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou
rcesRequired(this); } |
| 73 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native; |
| 74 |
| 75 // From SVGStylable |
| 76 |
| 77 SVGAnimatedString get className() { return _get_className(this); } |
| 78 static SVGAnimatedString _get_className(var _this) native; |
| 79 |
| 80 CSSStyleDeclaration get style() { return _get_style_SVGPatternElement(this); } |
| 81 static CSSStyleDeclaration _get_style_SVGPatternElement(var _this) native; |
| 82 |
| 83 CSSValue getPresentationAttribute(String name) { |
| 84 return _getPresentationAttribute(this, name); |
| 85 } |
| 86 static CSSValue _getPresentationAttribute(receiver, name) native; |
| 87 |
| 88 // From SVGFitToViewBox |
| 89 |
| 90 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return _get_preserv
eAspectRatio(this); } |
| 91 static SVGAnimatedPreserveAspectRatio _get_preserveAspectRatio(var _this) nati
ve; |
| 92 |
| 93 SVGAnimatedRect get viewBox() { return _get_viewBox(this); } |
| 94 static SVGAnimatedRect _get_viewBox(var _this) native; |
| 95 |
| 96 String get typeName() { return "SVGPatternElement"; } |
| 97 } |
| OLD | NEW |