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

Unified Diff: client/dom/generated/src/frog/Node.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/generated/src/frog/Navigator.dart ('k') | client/dom/generated/src/frog/NodeIterator.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/Node.dart
diff --git a/client/dom/generated/src/frog/Node.dart b/client/dom/generated/src/frog/Node.dart
index 8929213449bf22d898ced6daedf5b473f5de05a7..51cba10dfa6dc21112a74521488fff0f048e1029 100644
--- a/client/dom/generated/src/frog/Node.dart
+++ b/client/dom/generated/src/frog/Node.dart
@@ -37,39 +37,45 @@ class Node native "*Node" {
static final int TEXT_NODE = 3;
- NamedNodeMap attributes;
+ NamedNodeMap get attributes() native "return this.attributes;";
- String baseURI;
+ String get baseURI() native "return this.baseURI;";
- NodeList childNodes;
+ NodeList get childNodes() native "return this.childNodes;";
- Node firstChild;
+ Node get firstChild() native "return this.firstChild;";
- Node lastChild;
+ Node get lastChild() native "return this.lastChild;";
- String localName;
+ String get localName() native "return this.localName;";
- String namespaceURI;
+ String get namespaceURI() native "return this.namespaceURI;";
- Node nextSibling;
+ Node get nextSibling() native "return this.nextSibling;";
- String nodeName;
+ String get nodeName() native "return this.nodeName;";
- int nodeType;
+ int get nodeType() native "return this.nodeType;";
- String nodeValue;
+ String get nodeValue() native "return this.nodeValue;";
- Document ownerDocument;
+ void set nodeValue(String value) native "this.nodeValue = value;";
- Element parentElement;
+ Document get ownerDocument() native "return this.ownerDocument;";
- Node parentNode;
+ Element get parentElement() native "return this.parentElement;";
- String prefix;
+ Node get parentNode() native "return this.parentNode;";
- Node previousSibling;
+ String get prefix() native "return this.prefix;";
- String textContent;
+ void set prefix(String value) native "this.prefix = value;";
+
+ Node get previousSibling() native "return this.previousSibling;";
+
+ String get textContent() native "return this.textContent;";
+
+ void set textContent(String value) native "this.textContent = value;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/Navigator.dart ('k') | client/dom/generated/src/frog/NodeIterator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698