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 _ProcessingInstructionWrappingImplementation extends _NodeWrappingImplemen
tation implements ProcessingInstruction { | |
8 _ProcessingInstructionWrappingImplementation() : super() {} | |
9 | |
10 static create__ProcessingInstructionWrappingImplementation() native { | |
11 return new _ProcessingInstructionWrappingImplementation(); | |
12 } | |
13 | |
14 String get data() { return _get_data(this); } | |
15 static String _get_data(var _this) native; | |
16 | |
17 void set data(String value) { _set_data(this, value); } | |
18 static void _set_data(var _this, String value) native; | |
19 | |
20 StyleSheet get sheet() { return _get_sheet(this); } | |
21 static StyleSheet _get_sheet(var _this) native; | |
22 | |
23 String get target() { return _get_target(this); } | |
24 static String _get_target(var _this) native; | |
25 | |
26 String get typeName() { return "ProcessingInstruction"; } | |
27 } | |
OLD | NEW |