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 _UIEventWrappingImplementation extends _EventWrappingImplementation implem
ents UIEvent { | |
8 _UIEventWrappingImplementation() : super() {} | |
9 | |
10 static create__UIEventWrappingImplementation() native { | |
11 return new _UIEventWrappingImplementation(); | |
12 } | |
13 | |
14 int get charCode() { return _get_charCode(this); } | |
15 static int _get_charCode(var _this) native; | |
16 | |
17 int get detail() { return _get_detail(this); } | |
18 static int _get_detail(var _this) native; | |
19 | |
20 int get keyCode() { return _get_keyCode(this); } | |
21 static int _get_keyCode(var _this) native; | |
22 | |
23 int get layerX() { return _get_layerX(this); } | |
24 static int _get_layerX(var _this) native; | |
25 | |
26 int get layerY() { return _get_layerY(this); } | |
27 static int _get_layerY(var _this) native; | |
28 | |
29 int get pageX() { return _get_pageX(this); } | |
30 static int _get_pageX(var _this) native; | |
31 | |
32 int get pageY() { return _get_pageY(this); } | |
33 static int _get_pageY(var _this) native; | |
34 | |
35 DOMWindow get view() { return _get_view(this); } | |
36 static DOMWindow _get_view(var _this) native; | |
37 | |
38 int get which() { return _get_which(this); } | |
39 static int _get_which(var _this) native; | |
40 | |
41 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view,
int detail) { | |
42 _initUIEvent(this, type, canBubble, cancelable, view, detail); | |
43 return; | |
44 } | |
45 static void _initUIEvent(receiver, type, canBubble, cancelable, view, detail)
native; | |
46 | |
47 String get typeName() { return "UIEvent"; } | |
48 } | |
OLD | NEW |