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 ValidityStateWrappingImplementation extends DOMWrapperBase implements Vali
dityState { | |
8 ValidityStateWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
9 | |
10 bool get customError() { return _ptr.customError; } | |
11 | |
12 bool get patternMismatch() { return _ptr.patternMismatch; } | |
13 | |
14 bool get rangeOverflow() { return _ptr.rangeOverflow; } | |
15 | |
16 bool get rangeUnderflow() { return _ptr.rangeUnderflow; } | |
17 | |
18 bool get stepMismatch() { return _ptr.stepMismatch; } | |
19 | |
20 bool get tooLong() { return _ptr.tooLong; } | |
21 | |
22 bool get typeMismatch() { return _ptr.typeMismatch; } | |
23 | |
24 bool get valid() { return _ptr.valid; } | |
25 | |
26 bool get valueMissing() { return _ptr.valueMissing; } | |
27 } | |
OLD | NEW |