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 _ConvolverNodeWrappingImplementation extends _AudioNodeWrappingImplementat
ion implements ConvolverNode { | |
8 _ConvolverNodeWrappingImplementation() : super() {} | |
9 | |
10 static create__ConvolverNodeWrappingImplementation() native { | |
11 return new _ConvolverNodeWrappingImplementation(); | |
12 } | |
13 | |
14 AudioBuffer get buffer() { return _get_buffer(this); } | |
15 static AudioBuffer _get_buffer(var _this) native; | |
16 | |
17 void set buffer(AudioBuffer value) { _set_buffer(this, value); } | |
18 static void _set_buffer(var _this, AudioBuffer value) native; | |
19 | |
20 bool get normalize() { return _get_normalize(this); } | |
21 static bool _get_normalize(var _this) native; | |
22 | |
23 void set normalize(bool value) { _set_normalize(this, value); } | |
24 static void _set_normalize(var _this, bool value) native; | |
25 | |
26 String get typeName() { return "ConvolverNode"; } | |
27 } | |
OLD | NEW |