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 _HTMLFormElementWrappingImplementation extends _HTMLElementWrappingImpleme
ntation implements HTMLFormElement { | |
8 _HTMLFormElementWrappingImplementation() : super() {} | |
9 | |
10 static create__HTMLFormElementWrappingImplementation() native { | |
11 return new _HTMLFormElementWrappingImplementation(); | |
12 } | |
13 | |
14 String get acceptCharset() { return _get_acceptCharset(this); } | |
15 static String _get_acceptCharset(var _this) native; | |
16 | |
17 void set acceptCharset(String value) { _set_acceptCharset(this, value); } | |
18 static void _set_acceptCharset(var _this, String value) native; | |
19 | |
20 String get action() { return _get_action(this); } | |
21 static String _get_action(var _this) native; | |
22 | |
23 void set action(String value) { _set_action(this, value); } | |
24 static void _set_action(var _this, String value) native; | |
25 | |
26 String get autocomplete() { return _get_autocomplete(this); } | |
27 static String _get_autocomplete(var _this) native; | |
28 | |
29 void set autocomplete(String value) { _set_autocomplete(this, value); } | |
30 static void _set_autocomplete(var _this, String value) native; | |
31 | |
32 HTMLCollection get elements() { return _get_elements(this); } | |
33 static HTMLCollection _get_elements(var _this) native; | |
34 | |
35 String get encoding() { return _get_encoding(this); } | |
36 static String _get_encoding(var _this) native; | |
37 | |
38 void set encoding(String value) { _set_encoding(this, value); } | |
39 static void _set_encoding(var _this, String value) native; | |
40 | |
41 String get enctype() { return _get_enctype(this); } | |
42 static String _get_enctype(var _this) native; | |
43 | |
44 void set enctype(String value) { _set_enctype(this, value); } | |
45 static void _set_enctype(var _this, String value) native; | |
46 | |
47 int get length() { return _get_length(this); } | |
48 static int _get_length(var _this) native; | |
49 | |
50 String get method() { return _get_method(this); } | |
51 static String _get_method(var _this) native; | |
52 | |
53 void set method(String value) { _set_method(this, value); } | |
54 static void _set_method(var _this, String value) native; | |
55 | |
56 String get name() { return _get_name(this); } | |
57 static String _get_name(var _this) native; | |
58 | |
59 void set name(String value) { _set_name(this, value); } | |
60 static void _set_name(var _this, String value) native; | |
61 | |
62 bool get noValidate() { return _get_noValidate(this); } | |
63 static bool _get_noValidate(var _this) native; | |
64 | |
65 void set noValidate(bool value) { _set_noValidate(this, value); } | |
66 static void _set_noValidate(var _this, bool value) native; | |
67 | |
68 String get target() { return _get_target(this); } | |
69 static String _get_target(var _this) native; | |
70 | |
71 void set target(String value) { _set_target(this, value); } | |
72 static void _set_target(var _this, String value) native; | |
73 | |
74 bool checkValidity() { | |
75 return _checkValidity(this); | |
76 } | |
77 static bool _checkValidity(receiver) native; | |
78 | |
79 void reset() { | |
80 _reset(this); | |
81 return; | |
82 } | |
83 static void _reset(receiver) native; | |
84 | |
85 void submit() { | |
86 _submit(this); | |
87 return; | |
88 } | |
89 static void _submit(receiver) native; | |
90 | |
91 String get typeName() { return "HTMLFormElement"; } | |
92 } | |
OLD | NEW |