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