| 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 SVGViewSpecWrappingImplementation extends SVGZoomAndPanWrappingImplementat
ion implements SVGViewSpec { | |
| 8 SVGViewSpecWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
| 9 | |
| 10 String get preserveAspectRatioString() { return _ptr.preserveAspectRatioString
; } | |
| 11 | |
| 12 SVGTransformList get transform() { return LevelDom.wrapSVGTransformList(_ptr.t
ransform); } | |
| 13 | |
| 14 String get transformString() { return _ptr.transformString; } | |
| 15 | |
| 16 String get viewBoxString() { return _ptr.viewBoxString; } | |
| 17 | |
| 18 SVGElement get viewTarget() { return LevelDom.wrapSVGElement(_ptr.viewTarget);
} | |
| 19 | |
| 20 String get viewTargetString() { return _ptr.viewTargetString; } | |
| 21 | |
| 22 // From SVGFitToViewBox | |
| 23 | |
| 24 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return LevelDom.wra
pSVGAnimatedPreserveAspectRatio(_ptr.preserveAspectRatio); } | |
| 25 | |
| 26 SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewB
ox); } | |
| 27 } | |
| OLD | NEW |