| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class LinkElementWrappingImplementation extends ElementWrappingImplementation im
plements LinkElement { | 7 class LinkElementWrappingImplementation extends ElementWrappingImplementation im
plements LinkElement { |
| 8 LinkElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | 8 LinkElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 9 | 9 |
| 10 String get charset() { return _ptr.charset; } | 10 String get charset() { return _ptr.charset; } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 String get rel() { return _ptr.rel; } | 30 String get rel() { return _ptr.rel; } |
| 31 | 31 |
| 32 void set rel(String value) { _ptr.rel = value; } | 32 void set rel(String value) { _ptr.rel = value; } |
| 33 | 33 |
| 34 String get rev() { return _ptr.rev; } | 34 String get rev() { return _ptr.rev; } |
| 35 | 35 |
| 36 void set rev(String value) { _ptr.rev = value; } | 36 void set rev(String value) { _ptr.rev = value; } |
| 37 | 37 |
| 38 StyleSheet get sheet() { return LevelDom.wrapStyleSheet(_ptr.sheet); } | 38 StyleSheet get sheet() { return LevelDom.wrapStyleSheet(_ptr.sheet); } |
| 39 | 39 |
| 40 DOMSettableTokenList get sizes() { return LevelDom.wrapDOMSettableTokenList(_p
tr.sizes); } |
| 41 |
| 42 void set sizes(DOMSettableTokenList value) { _ptr.sizes = LevelDom.unwrap(valu
e); } |
| 43 |
| 40 String get target() { return _ptr.target; } | 44 String get target() { return _ptr.target; } |
| 41 | 45 |
| 42 void set target(String value) { _ptr.target = value; } | 46 void set target(String value) { _ptr.target = value; } |
| 43 | 47 |
| 44 String get type() { return _ptr.type; } | 48 String get type() { return _ptr.type; } |
| 45 | 49 |
| 46 void set type(String value) { _ptr.type = value; } | 50 void set type(String value) { _ptr.type = value; } |
| 47 } | 51 } |
| OLD | NEW |