| 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 _SVGClipPathElementWrappingImplementation extends _SVGElementWrappingImple
mentation implements SVGClipPathElement { |
| 8 _SVGClipPathElementWrappingImplementation() : super() {} |
| 9 |
| 10 static create__SVGClipPathElementWrappingImplementation() native { |
| 11 return new _SVGClipPathElementWrappingImplementation(); |
| 12 } |
| 13 |
| 14 SVGAnimatedEnumeration get clipPathUnits() { return _get_clipPathUnits(this);
} |
| 15 static SVGAnimatedEnumeration _get_clipPathUnits(var _this) native; |
| 16 |
| 17 // From SVGTests |
| 18 |
| 19 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this);
} |
| 20 static SVGStringList _get_requiredExtensions(var _this) native; |
| 21 |
| 22 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); } |
| 23 static SVGStringList _get_requiredFeatures(var _this) native; |
| 24 |
| 25 SVGStringList get systemLanguage() { return _get_systemLanguage(this); } |
| 26 static SVGStringList _get_systemLanguage(var _this) native; |
| 27 |
| 28 bool hasExtension(String extension) { |
| 29 return _hasExtension(this, extension); |
| 30 } |
| 31 static bool _hasExtension(receiver, extension) native; |
| 32 |
| 33 // From SVGLangSpace |
| 34 |
| 35 String get xmllang() { return _get_xmllang(this); } |
| 36 static String _get_xmllang(var _this) native; |
| 37 |
| 38 void set xmllang(String value) { _set_xmllang(this, value); } |
| 39 static void _set_xmllang(var _this, String value) native; |
| 40 |
| 41 String get xmlspace() { return _get_xmlspace(this); } |
| 42 static String _get_xmlspace(var _this) native; |
| 43 |
| 44 void set xmlspace(String value) { _set_xmlspace(this, value); } |
| 45 static void _set_xmlspace(var _this, String value) native; |
| 46 |
| 47 // From SVGExternalResourcesRequired |
| 48 |
| 49 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou
rcesRequired(this); } |
| 50 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native; |
| 51 |
| 52 // From SVGStylable |
| 53 |
| 54 SVGAnimatedString get className() { return _get_className(this); } |
| 55 static SVGAnimatedString _get_className(var _this) native; |
| 56 |
| 57 CSSStyleDeclaration get style() { return _get_style_SVGClipPathElement(this);
} |
| 58 static CSSStyleDeclaration _get_style_SVGClipPathElement(var _this) native; |
| 59 |
| 60 CSSValue getPresentationAttribute(String name) { |
| 61 return _getPresentationAttribute(this, name); |
| 62 } |
| 63 static CSSValue _getPresentationAttribute(receiver, name) native; |
| 64 |
| 65 // From SVGTransformable |
| 66 |
| 67 SVGAnimatedTransformList get transform() { return _get_transform(this); } |
| 68 static SVGAnimatedTransformList _get_transform(var _this) native; |
| 69 |
| 70 // From SVGLocatable |
| 71 |
| 72 SVGElement get farthestViewportElement() { return _get_farthestViewportElement
(this); } |
| 73 static SVGElement _get_farthestViewportElement(var _this) native; |
| 74 |
| 75 SVGElement get nearestViewportElement() { return _get_nearestViewportElement(t
his); } |
| 76 static SVGElement _get_nearestViewportElement(var _this) native; |
| 77 |
| 78 SVGRect getBBox() { |
| 79 return _getBBox(this); |
| 80 } |
| 81 static SVGRect _getBBox(receiver) native; |
| 82 |
| 83 SVGMatrix getCTM() { |
| 84 return _getCTM(this); |
| 85 } |
| 86 static SVGMatrix _getCTM(receiver) native; |
| 87 |
| 88 SVGMatrix getScreenCTM() { |
| 89 return _getScreenCTM(this); |
| 90 } |
| 91 static SVGMatrix _getScreenCTM(receiver) native; |
| 92 |
| 93 SVGMatrix getTransformToElement(SVGElement element) { |
| 94 return _getTransformToElement(this, element); |
| 95 } |
| 96 static SVGMatrix _getTransformToElement(receiver, element) native; |
| 97 |
| 98 String get typeName() { return "SVGClipPathElement"; } |
| 99 } |
| OLD | NEW |