| 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. | |
| 6 | |
| 7 class ObjectElementWrappingImplementation extends ElementWrappingImplementation
implements ObjectElement { | 5 class ObjectElementWrappingImplementation extends ElementWrappingImplementation
implements ObjectElement { |
| 8 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | 6 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 9 | 7 |
| 10 String get align() { return _ptr.align; } | 8 String get align() { return _ptr.align; } |
| 11 | 9 |
| 12 void set align(String value) { _ptr.align = value; } | 10 void set align(String value) { _ptr.align = value; } |
| 13 | 11 |
| 14 String get archive() { return _ptr.archive; } | 12 String get archive() { return _ptr.archive; } |
| 15 | 13 |
| 16 void set archive(String value) { _ptr.archive = value; } | 14 void set archive(String value) { _ptr.archive = value; } |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 bool get willValidate() { return _ptr.willValidate; } | 80 bool get willValidate() { return _ptr.willValidate; } |
| 83 | 81 |
| 84 bool checkValidity() { | 82 bool checkValidity() { |
| 85 return _ptr.checkValidity(); | 83 return _ptr.checkValidity(); |
| 86 } | 84 } |
| 87 | 85 |
| 88 void setCustomValidity(String error) { | 86 void setCustomValidity(String error) { |
| 89 _ptr.setCustomValidity(error); | 87 _ptr.setCustomValidity(error); |
| 90 return; | 88 return; |
| 91 } | 89 } |
| 90 |
| 91 SVGDocument get svgDocument() => _ptr.getSVGDocument(); |
| 92 } | 92 } |
| OLD | NEW |