Index: client/dom/generated/src/wrapping/_HTMLObjectElementWrappingImplementation.dart |
diff --git a/client/dom/generated/src/wrapping/_HTMLObjectElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLObjectElementWrappingImplementation.dart |
deleted file mode 100644 |
index 7a143316f410c47221ca50af0b1739504cd2d41f..0000000000000000000000000000000000000000 |
--- a/client/dom/generated/src/wrapping/_HTMLObjectElementWrappingImplementation.dart |
+++ /dev/null |
@@ -1,142 +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 _HTMLObjectElementWrappingImplementation extends _HTMLElementWrappingImplementation implements HTMLObjectElement { |
- _HTMLObjectElementWrappingImplementation() : super() {} |
- |
- static create__HTMLObjectElementWrappingImplementation() native { |
- return new _HTMLObjectElementWrappingImplementation(); |
- } |
- |
- String get align() { return _get_align(this); } |
- static String _get_align(var _this) native; |
- |
- void set align(String value) { _set_align(this, value); } |
- static void _set_align(var _this, String value) native; |
- |
- String get archive() { return _get_archive(this); } |
- static String _get_archive(var _this) native; |
- |
- void set archive(String value) { _set_archive(this, value); } |
- static void _set_archive(var _this, String value) native; |
- |
- String get border() { return _get_border(this); } |
- static String _get_border(var _this) native; |
- |
- void set border(String value) { _set_border(this, value); } |
- static void _set_border(var _this, String value) native; |
- |
- String get code() { return _get_code(this); } |
- static String _get_code(var _this) native; |
- |
- void set code(String value) { _set_code(this, value); } |
- static void _set_code(var _this, String value) native; |
- |
- String get codeBase() { return _get_codeBase(this); } |
- static String _get_codeBase(var _this) native; |
- |
- void set codeBase(String value) { _set_codeBase(this, value); } |
- static void _set_codeBase(var _this, String value) native; |
- |
- String get codeType() { return _get_codeType(this); } |
- static String _get_codeType(var _this) native; |
- |
- void set codeType(String value) { _set_codeType(this, value); } |
- static void _set_codeType(var _this, String value) native; |
- |
- Document get contentDocument() { return _get_contentDocument(this); } |
- static Document _get_contentDocument(var _this) native; |
- |
- String get data() { return _get_data(this); } |
- static String _get_data(var _this) native; |
- |
- void set data(String value) { _set_data(this, value); } |
- static void _set_data(var _this, String value) native; |
- |
- bool get declare() { return _get_declare(this); } |
- static bool _get_declare(var _this) native; |
- |
- void set declare(bool value) { _set_declare(this, value); } |
- static void _set_declare(var _this, bool value) native; |
- |
- HTMLFormElement get form() { return _get_form(this); } |
- static HTMLFormElement _get_form(var _this) native; |
- |
- String get height() { return _get_height(this); } |
- static String _get_height(var _this) native; |
- |
- void set height(String value) { _set_height(this, value); } |
- static void _set_height(var _this, String value) native; |
- |
- int get hspace() { return _get_hspace(this); } |
- static int _get_hspace(var _this) native; |
- |
- void set hspace(int value) { _set_hspace(this, value); } |
- static void _set_hspace(var _this, int value) native; |
- |
- String get name() { return _get_name(this); } |
- static String _get_name(var _this) native; |
- |
- void set name(String value) { _set_name(this, value); } |
- static void _set_name(var _this, String value) native; |
- |
- String get standby() { return _get_standby(this); } |
- static String _get_standby(var _this) native; |
- |
- void set standby(String value) { _set_standby(this, value); } |
- static void _set_standby(var _this, String value) native; |
- |
- String get type() { return _get_type(this); } |
- static String _get_type(var _this) native; |
- |
- void set type(String value) { _set_type(this, value); } |
- static void _set_type(var _this, String value) native; |
- |
- String get useMap() { return _get_useMap(this); } |
- static String _get_useMap(var _this) native; |
- |
- void set useMap(String value) { _set_useMap(this, value); } |
- static void _set_useMap(var _this, String value) native; |
- |
- String get validationMessage() { return _get_validationMessage(this); } |
- static String _get_validationMessage(var _this) native; |
- |
- ValidityState get validity() { return _get_validity(this); } |
- static ValidityState _get_validity(var _this) native; |
- |
- int get vspace() { return _get_vspace(this); } |
- static int _get_vspace(var _this) native; |
- |
- void set vspace(int value) { _set_vspace(this, value); } |
- static void _set_vspace(var _this, int value) native; |
- |
- String get width() { return _get_width(this); } |
- static String _get_width(var _this) native; |
- |
- void set width(String value) { _set_width(this, value); } |
- static void _set_width(var _this, String value) native; |
- |
- bool get willValidate() { return _get_willValidate(this); } |
- static bool _get_willValidate(var _this) native; |
- |
- bool checkValidity() { |
- return _checkValidity(this); |
- } |
- static bool _checkValidity(receiver) native; |
- |
- SVGDocument getSVGDocument() { |
- return _getSVGDocument(this); |
- } |
- static SVGDocument _getSVGDocument(receiver) native; |
- |
- void setCustomValidity(String error) { |
- _setCustomValidity(this, error); |
- return; |
- } |
- static void _setCustomValidity(receiver, error) native; |
- |
- String get typeName() { return "HTMLObjectElement"; } |
-} |