| Index: client/html/generated/src/wrapping/_SVGColorWrappingImplementation.dart
|
| diff --git a/client/html/generated/src/wrapping/_SVGColorWrappingImplementation.dart b/client/html/generated/src/wrapping/_SVGColorWrappingImplementation.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..52e8936f680323da58846cd0a3e5730ea51b9bab
|
| --- /dev/null
|
| +++ b/client/html/generated/src/wrapping/_SVGColorWrappingImplementation.dart
|
| @@ -0,0 +1,28 @@
|
| +// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| +class SVGColorWrappingImplementation extends CSSValueWrappingImplementation implements SVGColor {
|
| + SVGColorWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
|
| +
|
| + int get colorType() { return _ptr.colorType; }
|
| +
|
| + RGBColor get rgbColor() { return LevelDom.wrapRGBColor(_ptr.rgbColor); }
|
| +
|
| + void setColor(int colorType, String rgbColor, String iccColor) {
|
| + _ptr.setColor(colorType, rgbColor, iccColor);
|
| + return;
|
| + }
|
| +
|
| + void setRGBColor(String rgbColor) {
|
| + _ptr.setRGBColor(rgbColor);
|
| + return;
|
| + }
|
| +
|
| + void setRGBColorICCColor(String rgbColor, String iccColor) {
|
| + _ptr.setRGBColorICCColor(rgbColor, iccColor);
|
| + return;
|
| + }
|
| +}
|
|
|