OLD | NEW |
1 | 1 |
2 class NodeIteratorJs extends DOMTypeJs implements NodeIterator native "*NodeIter
ator" { | 2 class _NodeIteratorJs extends _DOMTypeJs implements NodeIterator native "*NodeIt
erator" { |
3 | 3 |
4 bool get expandEntityReferences() native "return this.expandEntityReferences;"
; | 4 bool get expandEntityReferences() native "return this.expandEntityReferences;"
; |
5 | 5 |
6 NodeFilterJs get filter() native "return this.filter;"; | 6 _NodeFilterJs get filter() native "return this.filter;"; |
7 | 7 |
8 bool get pointerBeforeReferenceNode() native "return this.pointerBeforeReferen
ceNode;"; | 8 bool get pointerBeforeReferenceNode() native "return this.pointerBeforeReferen
ceNode;"; |
9 | 9 |
10 NodeJs get referenceNode() native "return this.referenceNode;"; | 10 _NodeJs get referenceNode() native "return this.referenceNode;"; |
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 void detach() native; | 16 void detach() native; |
17 | 17 |
18 NodeJs nextNode() native; | 18 _NodeJs nextNode() native; |
19 | 19 |
20 NodeJs previousNode() native; | 20 _NodeJs previousNode() native; |
21 } | 21 } |
OLD | NEW |