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

Side by Side Diff: client/dom/generated/src/interface/Node.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 months 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 interface Node extends EventTarget { 7 interface Node extends EventTarget {
8 8
9 static final int ATTRIBUTE_NODE = 2; 9 static final int ATTRIBUTE_NODE = 2;
10 10
(...skipping 24 matching lines...) Expand all
35 static final int ENTITY_NODE = 6; 35 static final int ENTITY_NODE = 6;
36 36
37 static final int ENTITY_REFERENCE_NODE = 5; 37 static final int ENTITY_REFERENCE_NODE = 5;
38 38
39 static final int NOTATION_NODE = 12; 39 static final int NOTATION_NODE = 12;
40 40
41 static final int PROCESSING_INSTRUCTION_NODE = 7; 41 static final int PROCESSING_INSTRUCTION_NODE = 7;
42 42
43 static final int TEXT_NODE = 3; 43 static final int TEXT_NODE = 3;
44 44
45 NamedNodeMap get attributes(); 45 final NamedNodeMap attributes;
46 46
47 String get baseURI(); 47 final String baseURI;
48 48
49 NodeList get childNodes(); 49 final NodeList childNodes;
50 50
51 Node get firstChild(); 51 final Node firstChild;
52 52
53 Node get lastChild(); 53 final Node lastChild;
54 54
55 String get localName(); 55 final String localName;
56 56
57 String get namespaceURI(); 57 final String namespaceURI;
58 58
59 Node get nextSibling(); 59 final Node nextSibling;
60 60
61 String get nodeName(); 61 final String nodeName;
62 62
63 int get nodeType(); 63 final int nodeType;
64 64
65 String get nodeValue(); 65 String nodeValue;
66 66
67 void set nodeValue(String value); 67 final Document ownerDocument;
68 68
69 Document get ownerDocument(); 69 final Element parentElement;
70 70
71 Element get parentElement(); 71 final Node parentNode;
72 72
73 Node get parentNode(); 73 String prefix;
74 74
75 String get prefix(); 75 final Node previousSibling;
76 76
77 void set prefix(String value); 77 String textContent;
78
79 Node get previousSibling();
80
81 String get textContent();
82
83 void set textContent(String value);
84 78
85 void addEventListener(String type, EventListener listener, [bool useCapture]); 79 void addEventListener(String type, EventListener listener, [bool useCapture]);
86 80
87 Node appendChild(Node newChild); 81 Node appendChild(Node newChild);
88 82
89 Node cloneNode(bool deep); 83 Node cloneNode(bool deep);
90 84
91 int compareDocumentPosition(Node other); 85 int compareDocumentPosition(Node other);
92 86
93 bool contains(Node other); 87 bool contains(Node other);
(...skipping 19 matching lines...) Expand all
113 String lookupPrefix(String namespaceURI); 107 String lookupPrefix(String namespaceURI);
114 108
115 void normalize(); 109 void normalize();
116 110
117 Node removeChild(Node oldChild); 111 Node removeChild(Node oldChild);
118 112
119 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 113 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
120 114
121 Node replaceChild(Node newChild, Node oldChild); 115 Node replaceChild(Node newChild, Node oldChild);
122 } 116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698