Index: client/dom/generated/src/wrapping/_NodeWrappingImplementation.dart |
diff --git a/client/dom/generated/src/wrapping/_NodeWrappingImplementation.dart b/client/dom/generated/src/wrapping/_NodeWrappingImplementation.dart |
deleted file mode 100644 |
index 3b3bdec3293bb79f7d1a5bcf4ef683c6cb85ef3c..0000000000000000000000000000000000000000 |
--- a/client/dom/generated/src/wrapping/_NodeWrappingImplementation.dart |
+++ /dev/null |
@@ -1,185 +0,0 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-// WARNING: Do not edit - generated code. |
- |
-class _NodeWrappingImplementation extends DOMWrapperBase implements Node { |
- _NodeWrappingImplementation() : super() {} |
- |
- static create__NodeWrappingImplementation() native { |
- return new _NodeWrappingImplementation(); |
- } |
- |
- NamedNodeMap get attributes() { return _get_attributes(this); } |
- static NamedNodeMap _get_attributes(var _this) native; |
- |
- String get baseURI() { return _get_baseURI(this); } |
- static String _get_baseURI(var _this) native; |
- |
- NodeList get childNodes() { return _get_childNodes(this); } |
- static NodeList _get_childNodes(var _this) native; |
- |
- Node get firstChild() { return _get_firstChild(this); } |
- static Node _get_firstChild(var _this) native; |
- |
- Node get lastChild() { return _get_lastChild(this); } |
- static Node _get_lastChild(var _this) native; |
- |
- String get localName() { return _get_localName(this); } |
- static String _get_localName(var _this) native; |
- |
- String get namespaceURI() { return _get_namespaceURI(this); } |
- static String _get_namespaceURI(var _this) native; |
- |
- Node get nextSibling() { return _get_nextSibling(this); } |
- static Node _get_nextSibling(var _this) native; |
- |
- String get nodeName() { return _get_nodeName(this); } |
- static String _get_nodeName(var _this) native; |
- |
- int get nodeType() { return _get_nodeType(this); } |
- static int _get_nodeType(var _this) native; |
- |
- String get nodeValue() { return _get_nodeValue(this); } |
- static String _get_nodeValue(var _this) native; |
- |
- void set nodeValue(String value) { _set_nodeValue(this, value); } |
- static void _set_nodeValue(var _this, String value) native; |
- |
- Document get ownerDocument() { return _get_ownerDocument(this); } |
- static Document _get_ownerDocument(var _this) native; |
- |
- Element get parentElement() { return _get_parentElement(this); } |
- static Element _get_parentElement(var _this) native; |
- |
- Node get parentNode() { return _get_parentNode(this); } |
- static Node _get_parentNode(var _this) native; |
- |
- String get prefix() { return _get_prefix(this); } |
- static String _get_prefix(var _this) native; |
- |
- void set prefix(String value) { _set_prefix(this, value); } |
- static void _set_prefix(var _this, String value) native; |
- |
- Node get previousSibling() { return _get_previousSibling(this); } |
- static Node _get_previousSibling(var _this) native; |
- |
- String get textContent() { return _get_textContent(this); } |
- static String _get_textContent(var _this) native; |
- |
- void set textContent(String value) { _set_textContent(this, value); } |
- static void _set_textContent(var _this, String value) native; |
- |
- void addEventListener(String type, EventListener listener, [bool useCapture = null]) { |
- if (useCapture === null) { |
- _addEventListener_Node(this, type, listener); |
- return; |
- } else { |
- _addEventListener_Node_2(this, type, listener, useCapture); |
- return; |
- } |
- } |
- static void _addEventListener_Node(receiver, type, listener) native; |
- static void _addEventListener_Node_2(receiver, type, listener, useCapture) native; |
- |
- Node appendChild(Node newChild) { |
- return _appendChild(this, newChild); |
- } |
- static Node _appendChild(receiver, newChild) native; |
- |
- Node cloneNode(bool deep) { |
- return _cloneNode(this, deep); |
- } |
- static Node _cloneNode(receiver, deep) native; |
- |
- int compareDocumentPosition(Node other) { |
- return _compareDocumentPosition(this, other); |
- } |
- static int _compareDocumentPosition(receiver, other) native; |
- |
- bool contains(Node other) { |
- return _contains(this, other); |
- } |
- static bool _contains(receiver, other) native; |
- |
- bool dispatchEvent(Event event) { |
- return _dispatchEvent_Node(this, event); |
- } |
- static bool _dispatchEvent_Node(receiver, event) native; |
- |
- bool hasAttributes() { |
- return _hasAttributes(this); |
- } |
- static bool _hasAttributes(receiver) native; |
- |
- bool hasChildNodes() { |
- return _hasChildNodes(this); |
- } |
- static bool _hasChildNodes(receiver) native; |
- |
- Node insertBefore(Node newChild, Node refChild) { |
- return _insertBefore(this, newChild, refChild); |
- } |
- static Node _insertBefore(receiver, newChild, refChild) native; |
- |
- bool isDefaultNamespace(String namespaceURI) { |
- return _isDefaultNamespace(this, namespaceURI); |
- } |
- static bool _isDefaultNamespace(receiver, namespaceURI) native; |
- |
- bool isEqualNode(Node other) { |
- return _isEqualNode(this, other); |
- } |
- static bool _isEqualNode(receiver, other) native; |
- |
- bool isSameNode(Node other) { |
- return _isSameNode(this, other); |
- } |
- static bool _isSameNode(receiver, other) native; |
- |
- bool isSupported(String feature, String version) { |
- return _isSupported(this, feature, version); |
- } |
- static bool _isSupported(receiver, feature, version) native; |
- |
- String lookupNamespaceURI(String prefix) { |
- return _lookupNamespaceURI(this, prefix); |
- } |
- static String _lookupNamespaceURI(receiver, prefix) native; |
- |
- String lookupPrefix(String namespaceURI) { |
- return _lookupPrefix(this, namespaceURI); |
- } |
- static String _lookupPrefix(receiver, namespaceURI) native; |
- |
- void normalize() { |
- _normalize(this); |
- return; |
- } |
- static void _normalize(receiver) native; |
- |
- Node removeChild(Node oldChild) { |
- return _removeChild(this, oldChild); |
- } |
- static Node _removeChild(receiver, oldChild) native; |
- |
- void removeEventListener(String type, EventListener listener, [bool useCapture = null]) { |
- if (useCapture === null) { |
- _removeEventListener_Node(this, type, listener); |
- return; |
- } else { |
- _removeEventListener_Node_2(this, type, listener, useCapture); |
- return; |
- } |
- } |
- static void _removeEventListener_Node(receiver, type, listener) native; |
- static void _removeEventListener_Node_2(receiver, type, listener, useCapture) native; |
- |
- Node replaceChild(Node newChild, Node oldChild) { |
- return _replaceChild(this, newChild, oldChild); |
- } |
- static Node _replaceChild(receiver, newChild, oldChild) native; |
- |
- String get typeName() { return "Node"; } |
-} |