OLD | NEW |
1 | 1 |
2 class TreeWalkerJs extends DOMTypeJs implements TreeWalker native "*TreeWalker"
{ | 2 class _TreeWalkerJs extends _DOMTypeJs implements TreeWalker native "*TreeWalker
" { |
3 | 3 |
4 NodeJs get currentNode() native "return this.currentNode;"; | 4 _NodeJs get currentNode() native "return this.currentNode;"; |
5 | 5 |
6 void set currentNode(NodeJs value) native "this.currentNode = value;"; | 6 void set currentNode(_NodeJs value) native "this.currentNode = value;"; |
7 | 7 |
8 bool get expandEntityReferences() native "return this.expandEntityReferences;"
; | 8 bool get expandEntityReferences() native "return this.expandEntityReferences;"
; |
9 | 9 |
10 NodeFilterJs get filter() native "return this.filter;"; | 10 _NodeFilterJs get filter() native "return this.filter;"; |
11 | 11 |
12 NodeJs get root() native "return this.root;"; | 12 _NodeJs get root() native "return this.root;"; |
13 | 13 |
14 int get whatToShow() native "return this.whatToShow;"; | 14 int get whatToShow() native "return this.whatToShow;"; |
15 | 15 |
16 NodeJs firstChild() native; | 16 _NodeJs firstChild() native; |
17 | 17 |
18 NodeJs lastChild() native; | 18 _NodeJs lastChild() native; |
19 | 19 |
20 NodeJs nextNode() native; | 20 _NodeJs nextNode() native; |
21 | 21 |
22 NodeJs nextSibling() native; | 22 _NodeJs nextSibling() native; |
23 | 23 |
24 NodeJs parentNode() native; | 24 _NodeJs parentNode() native; |
25 | 25 |
26 NodeJs previousNode() native; | 26 _NodeJs previousNode() native; |
27 | 27 |
28 NodeJs previousSibling() native; | 28 _NodeJs previousSibling() native; |
29 } | 29 } |
OLD | NEW |