| 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 FormElementWrappingImplementation extends ElementWrappingImplementation im
plements FormElement { | |
| 8 FormElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
| 9 | |
| 10 String get acceptCharset() { return _ptr.acceptCharset; } | |
| 11 | |
| 12 void set acceptCharset(String value) { _ptr.acceptCharset = value; } | |
| 13 | |
| 14 String get action() { return _ptr.action; } | |
| 15 | |
| 16 void set action(String value) { _ptr.action = value; } | |
| 17 | |
| 18 String get autocomplete() { return _ptr.autocomplete; } | |
| 19 | |
| 20 void set autocomplete(String value) { _ptr.autocomplete = value; } | |
| 21 | |
| 22 String get encoding() { return _ptr.encoding; } | |
| 23 | |
| 24 void set encoding(String value) { _ptr.encoding = value; } | |
| 25 | |
| 26 String get enctype() { return _ptr.enctype; } | |
| 27 | |
| 28 void set enctype(String value) { _ptr.enctype = value; } | |
| 29 | |
| 30 int get length() { return _ptr.length; } | |
| 31 | |
| 32 String get method() { return _ptr.method; } | |
| 33 | |
| 34 void set method(String value) { _ptr.method = value; } | |
| 35 | |
| 36 String get name() { return _ptr.name; } | |
| 37 | |
| 38 void set name(String value) { _ptr.name = value; } | |
| 39 | |
| 40 bool get noValidate() { return _ptr.noValidate; } | |
| 41 | |
| 42 void set noValidate(bool value) { _ptr.noValidate = value; } | |
| 43 | |
| 44 String get target() { return _ptr.target; } | |
| 45 | |
| 46 void set target(String value) { _ptr.target = value; } | |
| 47 | |
| 48 bool checkValidity() { | |
| 49 return _ptr.checkValidity(); | |
| 50 } | |
| 51 | |
| 52 void reset() { | |
| 53 _ptr.reset(); | |
| 54 return; | |
| 55 } | |
| 56 | |
| 57 void submit() { | |
| 58 _ptr.submit(); | |
| 59 return; | |
| 60 } | |
| 61 } | |
| OLD | NEW |