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 _HTMLMeterElementWrappingImplementation extends _HTMLElementWrappingImplem
entation implements HTMLMeterElement { | |
8 _HTMLMeterElementWrappingImplementation() : super() {} | |
9 | |
10 static create__HTMLMeterElementWrappingImplementation() native { | |
11 return new _HTMLMeterElementWrappingImplementation(); | |
12 } | |
13 | |
14 HTMLFormElement get form() { return _get_form(this); } | |
15 static HTMLFormElement _get_form(var _this) native; | |
16 | |
17 num get high() { return _get_high(this); } | |
18 static num _get_high(var _this) native; | |
19 | |
20 void set high(num value) { _set_high(this, value); } | |
21 static void _set_high(var _this, num value) native; | |
22 | |
23 NodeList get labels() { return _get_labels(this); } | |
24 static NodeList _get_labels(var _this) native; | |
25 | |
26 num get low() { return _get_low(this); } | |
27 static num _get_low(var _this) native; | |
28 | |
29 void set low(num value) { _set_low(this, value); } | |
30 static void _set_low(var _this, num value) native; | |
31 | |
32 num get max() { return _get_max(this); } | |
33 static num _get_max(var _this) native; | |
34 | |
35 void set max(num value) { _set_max(this, value); } | |
36 static void _set_max(var _this, num value) native; | |
37 | |
38 num get min() { return _get_min(this); } | |
39 static num _get_min(var _this) native; | |
40 | |
41 void set min(num value) { _set_min(this, value); } | |
42 static void _set_min(var _this, num value) native; | |
43 | |
44 num get optimum() { return _get_optimum(this); } | |
45 static num _get_optimum(var _this) native; | |
46 | |
47 void set optimum(num value) { _set_optimum(this, value); } | |
48 static void _set_optimum(var _this, num value) native; | |
49 | |
50 num get value() { return _get_value(this); } | |
51 static num _get_value(var _this) native; | |
52 | |
53 void set value(num value) { _set_value(this, value); } | |
54 static void _set_value(var _this, num value) native; | |
55 | |
56 String get typeName() { return "HTMLMeterElement"; } | |
57 } | |
OLD | NEW |