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 _HTMLFrameSetElementWrappingImplementation extends _HTMLElementWrappingImp
lementation implements HTMLFrameSetElement { | |
8 _HTMLFrameSetElementWrappingImplementation() : super() {} | |
9 | |
10 static create__HTMLFrameSetElementWrappingImplementation() native { | |
11 return new _HTMLFrameSetElementWrappingImplementation(); | |
12 } | |
13 | |
14 String get cols() { return _get_cols(this); } | |
15 static String _get_cols(var _this) native; | |
16 | |
17 void set cols(String value) { _set_cols(this, value); } | |
18 static void _set_cols(var _this, String value) native; | |
19 | |
20 String get rows() { return _get_rows(this); } | |
21 static String _get_rows(var _this) native; | |
22 | |
23 void set rows(String value) { _set_rows(this, value); } | |
24 static void _set_rows(var _this, String value) native; | |
25 | |
26 String get typeName() { return "HTMLFrameSetElement"; } | |
27 } | |
OLD | NEW |