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 _TreeWalkerWrappingImplementation extends DOMWrapperBase implements TreeWa
lker { | |
8 _TreeWalkerWrappingImplementation() : super() {} | |
9 | |
10 static create__TreeWalkerWrappingImplementation() native { | |
11 return new _TreeWalkerWrappingImplementation(); | |
12 } | |
13 | |
14 Node get currentNode() { return _get_currentNode(this); } | |
15 static Node _get_currentNode(var _this) native; | |
16 | |
17 void set currentNode(Node value) { _set_currentNode(this, value); } | |
18 static void _set_currentNode(var _this, Node value) native; | |
19 | |
20 bool get expandEntityReferences() { return _get_expandEntityReferences(this);
} | |
21 static bool _get_expandEntityReferences(var _this) native; | |
22 | |
23 NodeFilter get filter() { return _get_filter(this); } | |
24 static NodeFilter _get_filter(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 Node firstChild() { | |
33 return _firstChild(this); | |
34 } | |
35 static Node _firstChild(receiver) native; | |
36 | |
37 Node lastChild() { | |
38 return _lastChild(this); | |
39 } | |
40 static Node _lastChild(receiver) native; | |
41 | |
42 Node nextNode() { | |
43 return _nextNode(this); | |
44 } | |
45 static Node _nextNode(receiver) native; | |
46 | |
47 Node nextSibling() { | |
48 return _nextSibling(this); | |
49 } | |
50 static Node _nextSibling(receiver) native; | |
51 | |
52 Node parentNode() { | |
53 return _parentNode(this); | |
54 } | |
55 static Node _parentNode(receiver) native; | |
56 | |
57 Node previousNode() { | |
58 return _previousNode(this); | |
59 } | |
60 static Node _previousNode(receiver) native; | |
61 | |
62 Node previousSibling() { | |
63 return _previousSibling(this); | |
64 } | |
65 static Node _previousSibling(receiver) native; | |
66 | |
67 String get typeName() { return "TreeWalker"; } | |
68 } | |
OLD | NEW |