| 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 SVGViewElementWrappingImplementation extends SVGElementWrappingImplementat
ion implements SVGViewElement { |
| 8 SVGViewElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 9 |
| 10 SVGStringList get viewTarget() { return LevelDom.wrapSVGStringList(_ptr.viewTa
rget); } |
| 11 |
| 12 // From SVGExternalResourcesRequired |
| 13 |
| 14 SVGAnimatedBoolean get externalResourcesRequired() { return LevelDom.wrapSVGAn
imatedBoolean(_ptr.externalResourcesRequired); } |
| 15 |
| 16 // From SVGFitToViewBox |
| 17 |
| 18 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return LevelDom.wra
pSVGAnimatedPreserveAspectRatio(_ptr.preserveAspectRatio); } |
| 19 |
| 20 SVGAnimatedRect get viewBox() { return LevelDom.wrapSVGAnimatedRect(_ptr.viewB
ox); } |
| 21 |
| 22 // From SVGZoomAndPan |
| 23 |
| 24 int get zoomAndPan() { return _ptr.zoomAndPan; } |
| 25 |
| 26 void set zoomAndPan(int value) { _ptr.zoomAndPan = value; } |
| 27 } |
| OLD | NEW |