Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: client/dom/generated/src/wrapping/_NodeIteratorWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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. 5 // WARNING: Do not edit - generated code.
6 6
7 class _NodeIteratorWrappingImplementation extends DOMWrapperBase implements Node Iterator { 7 class _NodeIteratorWrappingImplementation extends DOMWrapperBase implements Node Iterator {
8 _NodeIteratorWrappingImplementation() : super() {} 8 _NodeIteratorWrappingImplementation() : super() {}
9 9
10 static create__NodeIteratorWrappingImplementation() native { 10 static create__NodeIteratorWrappingImplementation() native {
11 return new _NodeIteratorWrappingImplementation(); 11 return new _NodeIteratorWrappingImplementation();
12 } 12 }
13 13
14 bool get expandEntityReferences() { return _get__NodeIterator_expandEntityRefe rences(this); } 14 bool get expandEntityReferences() { return _get_expandEntityReferences(this); }
15 static bool _get__NodeIterator_expandEntityReferences(var _this) native; 15 static bool _get_expandEntityReferences(var _this) native;
16 16
17 NodeFilter get filter() { return _get__NodeIterator_filter(this); } 17 NodeFilter get filter() { return _get_filter(this); }
18 static NodeFilter _get__NodeIterator_filter(var _this) native; 18 static NodeFilter _get_filter(var _this) native;
19 19
20 bool get pointerBeforeReferenceNode() { return _get__NodeIterator_pointerBefor eReferenceNode(this); } 20 bool get pointerBeforeReferenceNode() { return _get_pointerBeforeReferenceNode (this); }
21 static bool _get__NodeIterator_pointerBeforeReferenceNode(var _this) native; 21 static bool _get_pointerBeforeReferenceNode(var _this) native;
22 22
23 Node get referenceNode() { return _get__NodeIterator_referenceNode(this); } 23 Node get referenceNode() { return _get_referenceNode(this); }
24 static Node _get__NodeIterator_referenceNode(var _this) native; 24 static Node _get_referenceNode(var _this) native;
25 25
26 Node get root() { return _get__NodeIterator_root(this); } 26 Node get root() { return _get_root(this); }
27 static Node _get__NodeIterator_root(var _this) native; 27 static Node _get_root(var _this) native;
28 28
29 int get whatToShow() { return _get__NodeIterator_whatToShow(this); } 29 int get whatToShow() { return _get_whatToShow(this); }
30 static int _get__NodeIterator_whatToShow(var _this) native; 30 static int _get_whatToShow(var _this) native;
31 31
32 void detach() { 32 void detach() {
33 _detach(this); 33 _detach(this);
34 return; 34 return;
35 } 35 }
36 static void _detach(receiver) native; 36 static void _detach(receiver) native;
37 37
38 Node nextNode() { 38 Node nextNode() {
39 return _nextNode(this); 39 return _nextNode(this);
40 } 40 }
41 static Node _nextNode(receiver) native; 41 static Node _nextNode(receiver) native;
42 42
43 Node previousNode() { 43 Node previousNode() {
44 return _previousNode(this); 44 return _previousNode(this);
45 } 45 }
46 static Node _previousNode(receiver) native; 46 static Node _previousNode(receiver) native;
47 47
48 String get typeName() { return "NodeIterator"; } 48 String get typeName() { return "NodeIterator"; }
49 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698