| 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 SVGElementWrappingImplemen
tation implements SVGPatternElement { | |
| 8 SVGPatternElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
| 9 | |
| 10 SVGAnimatedLength get height() { return LevelDom.wrapSVGAnimatedLength(_ptr.he
ight); } | |
| 11 | |
| 12 SVGAnimatedEnumeration get patternContentUnits() { return LevelDom.wrapSVGAnim
atedEnumeration(_ptr.patternContentUnits); } | |
| 13 | |
| 14 SVGAnimatedTransformList get patternTransform() { return LevelDom.wrapSVGAnima
tedTransformList(_ptr.patternTransform); } | |
| 15 | |
| 16 SVGAnimatedEnumeration get patternUnits() { return LevelDom.wrapSVGAnimatedEnu
meration(_ptr.patternUnits); } | |
| 17 | |
| 18 SVGAnimatedLength get width() { return LevelDom.wrapSVGAnimatedLength(_ptr.wid
th); } | |
| 19 | |
| 20 SVGAnimatedLength get x() { return LevelDom.wrapSVGAnimatedLength(_ptr.x); } | |
| 21 | |
| 22 SVGAnimatedLength get y() { return LevelDom.wrapSVGAnimatedLength(_ptr.y); } | |
| 23 | |
| 24 // From SVGURIReference | |
| 25 | |
| 26 SVGAnimatedString get href() { return LevelDom.wrapSVGAnimatedString(_ptr.href
); } | |
| 27 | |
| 28 // From SVGTests | |
| 29 | |
| 30 SVGStringList get requiredExtensions() { return LevelDom.wrapSVGStringList(_pt
r.requiredExtensions); } | |
| 31 | |
| 32 SVGStringList get requiredFeatures() { return LevelDom.wrapSVGStringList(_ptr.
requiredFeatures); } | |
| 33 | |
| 34 SVGStringList get systemLanguage() { return LevelDom.wrapSVGStringList(_ptr.sy
stemLanguage); } | |
| 35 | |
| 36 bool hasExtension(String extension) { | |
| 37 return _ptr.hasExtension(extension); | |
| 38 } | |
| 39 | |
| 40 // From SVGLangSpace | |
| 41 | |
| 42 String get xmllang() { return _ptr.xmllang; } | |
| 43 | |
| 44 void set xmllang(String value) { _ptr.xmllang = value; } | |
| 45 | |
| 46 String get xmlspace() { return _ptr.xmlspace; } | |
| 47 | |
| 48 void set xmlspace(String value) { _ptr.xmlspace = value; } | |
| 49 | |
| 50 // From SVGExternalResourcesRequired | |
| 51 | |
| 52 SVGAnimatedBoolean get externalResourcesRequired() { return LevelDom.wrapSVGAn
imatedBoolean(_ptr.externalResourcesRequired); } | |
| 53 | |
| 54 // From SVGStylable | |
| 55 | |
| 56 SVGAnimatedString get className() { return LevelDom.wrapSVGAnimatedString(_ptr
.className); } | |
| 57 | |
| 58 CSSStyleDeclaration get style() { return LevelDom.wrapCSSStyleDeclaration(_ptr
.style); } | |
| 59 | |
| 60 CSSValue getPresentationAttribute(String name) { | |
| 61 return LevelDom.wrapCSSValue(_ptr.getPresentationAttribute(name)); | |
| 62 } | |
| 63 | |
| 64 // From SVGFitToViewBox | |
| 65 | |
| 66 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return LevelDom.wra
pSVGAnimatedPreserveAspectRatio(_ptr.preserveAspectRatio); } | |
| 67 | |
| 68 SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewB
ox); } | |
| 69 } | |
| OLD | NEW |