| 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 SVGPaintWrappingImplementation extends SVGColorWrappingImplementation impl
ements SVGPaint { | |
| 8 SVGPaintWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
| 9 | |
| 10 int get paintType() { return _ptr.paintType; } | |
| 11 | |
| 12 String get uri() { return _ptr.uri; } | |
| 13 | |
| 14 void setPaint(int paintType, String uri, String rgbColor, String iccColor) { | |
| 15 _ptr.setPaint(paintType, uri, rgbColor, iccColor); | |
| 16 return; | |
| 17 } | |
| 18 | |
| 19 void setUri(String uri) { | |
| 20 _ptr.setUri(uri); | |
| 21 return; | |
| 22 } | |
| 23 } | |
| OLD | NEW |