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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface ValidityState { | 7 interface ValidityState { |
8 | 8 |
9 bool get customError(); | 9 final bool customError; |
10 | 10 |
11 bool get patternMismatch(); | 11 final bool patternMismatch; |
12 | 12 |
13 bool get rangeOverflow(); | 13 final bool rangeOverflow; |
14 | 14 |
15 bool get rangeUnderflow(); | 15 final bool rangeUnderflow; |
16 | 16 |
17 bool get stepMismatch(); | 17 final bool stepMismatch; |
18 | 18 |
19 bool get tooLong(); | 19 final bool tooLong; |
20 | 20 |
21 bool get typeMismatch(); | 21 final bool typeMismatch; |
22 | 22 |
23 bool get valid(); | 23 final bool valid; |
24 | 24 |
25 bool get valueMissing(); | 25 final bool valueMissing; |
26 } | 26 } |
OLD | NEW |