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 _DeviceOrientationEventWrappingImplementation extends _EventWrappingImplem
entation implements DeviceOrientationEvent { | |
8 _DeviceOrientationEventWrappingImplementation() : super() {} | |
9 | |
10 static create__DeviceOrientationEventWrappingImplementation() native { | |
11 return new _DeviceOrientationEventWrappingImplementation(); | |
12 } | |
13 | |
14 bool get absolute() { return _get_absolute(this); } | |
15 static bool _get_absolute(var _this) native; | |
16 | |
17 num get alpha() { return _get_alpha(this); } | |
18 static num _get_alpha(var _this) native; | |
19 | |
20 num get beta() { return _get_beta(this); } | |
21 static num _get_beta(var _this) native; | |
22 | |
23 num get gamma() { return _get_gamma(this); } | |
24 static num _get_gamma(var _this) native; | |
25 | |
26 void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, nu
m alpha, num beta, num gamma, bool absolute) { | |
27 _initDeviceOrientationEvent(this, type, bubbles, cancelable, alpha, beta, ga
mma, absolute); | |
28 return; | |
29 } | |
30 static void _initDeviceOrientationEvent(receiver, type, bubbles, cancelable, a
lpha, beta, gamma, absolute) native; | |
31 | |
32 String get typeName() { return "DeviceOrientationEvent"; } | |
33 } | |
OLD | NEW |