OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 interface CloseEvent extends Event default CloseEventWrappingImplementation { | 5 interface CloseEvent extends Event default CloseEventWrappingImplementation { |
6 | 6 |
7 CloseEvent(String type, int code, String reason, | 7 CloseEvent(String type, int code, String reason, |
8 [bool canBubble, bool cancelable, bool wasClean]); | 8 [bool canBubble, bool cancelable, bool wasClean]); |
9 | 9 |
10 int get code(); | 10 int get code; |
11 | 11 |
12 String get reason(); | 12 String get reason; |
13 | 13 |
14 bool get wasClean(); | 14 bool get wasClean; |
15 } | 15 } |
OLD | NEW |