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 MetaElementWrappingImplementation extends ElementWrappingImplementation im
plements MetaElement { | |
8 MetaElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
9 | |
10 String get content() { return _ptr.content; } | |
11 | |
12 void set content(String value) { _ptr.content = value; } | |
13 | |
14 String get httpEquiv() { return _ptr.httpEquiv; } | |
15 | |
16 void set httpEquiv(String value) { _ptr.httpEquiv = value; } | |
17 | |
18 String get name() { return _ptr.name; } | |
19 | |
20 void set name(String value) { _ptr.name = value; } | |
21 | |
22 String get scheme() { return _ptr.scheme; } | |
23 | |
24 void set scheme(String value) { _ptr.scheme = value; } | |
25 } | |
OLD | NEW |