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 _NodeIteratorWrappingImplementation extends DOMWrapperBase implements Node
Iterator { | |
8 _NodeIteratorWrappingImplementation() : super() {} | |
9 | |
10 static create__NodeIteratorWrappingImplementation() native { | |
11 return new _NodeIteratorWrappingImplementation(); | |
12 } | |
13 | |
14 bool get expandEntityReferences() { return _get_expandEntityReferences(this);
} | |
15 static bool _get_expandEntityReferences(var _this) native; | |
16 | |
17 NodeFilter get filter() { return _get_filter(this); } | |
18 static NodeFilter _get_filter(var _this) native; | |
19 | |
20 bool get pointerBeforeReferenceNode() { return _get_pointerBeforeReferenceNode
(this); } | |
21 static bool _get_pointerBeforeReferenceNode(var _this) native; | |
22 | |
23 Node get referenceNode() { return _get_referenceNode(this); } | |
24 static Node _get_referenceNode(var _this) native; | |
25 | |
26 Node get root() { return _get_root(this); } | |
27 static Node _get_root(var _this) native; | |
28 | |
29 int get whatToShow() { return _get_whatToShow(this); } | |
30 static int _get_whatToShow(var _this) native; | |
31 | |
32 void detach() { | |
33 _detach(this); | |
34 return; | |
35 } | |
36 static void _detach(receiver) native; | |
37 | |
38 Node nextNode() { | |
39 return _nextNode(this); | |
40 } | |
41 static Node _nextNode(receiver) native; | |
42 | |
43 Node previousNode() { | |
44 return _previousNode(this); | |
45 } | |
46 static Node _previousNode(receiver) native; | |
47 | |
48 String get typeName() { return "NodeIterator"; } | |
49 } | |
OLD | NEW |