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

Side by Side Diff: client/html/generated/src/wrapping/_ObjectElementWrappingImplementation.dart

Issue 8965009: Expose ObjectElement.svgDocument. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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
« no previous file with comments | « client/html/generated/src/interface/ObjectElement.dart ('k') | client/html/html.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class ObjectElementWrappingImplementation extends ElementWrappingImplementation implements ObjectElement {
8 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 String get align() { return _ptr.align; }
11
12 void set align(String value) { _ptr.align = value; }
13
14 String get archive() { return _ptr.archive; }
15
16 void set archive(String value) { _ptr.archive = value; }
17
18 String get border() { return _ptr.border; }
19
20 void set border(String value) { _ptr.border = value; }
21
22 String get code() { return _ptr.code; }
23
24 void set code(String value) { _ptr.code = value; }
25
26 String get codeBase() { return _ptr.codeBase; }
27
28 void set codeBase(String value) { _ptr.codeBase = value; }
29
30 String get codeType() { return _ptr.codeType; }
31
32 void set codeType(String value) { _ptr.codeType = value; }
33
34 Document get contentDocument() { return LevelDom.wrapDocument(_ptr.contentDocu ment); }
35
36 String get data() { return _ptr.data; }
37
38 void set data(String value) { _ptr.data = value; }
39
40 bool get declare() { return _ptr.declare; }
41
42 void set declare(bool value) { _ptr.declare = value; }
43
44 FormElement get form() { return LevelDom.wrapFormElement(_ptr.form); }
45
46 String get height() { return _ptr.height; }
47
48 void set height(String value) { _ptr.height = value; }
49
50 int get hspace() { return _ptr.hspace; }
51
52 void set hspace(int value) { _ptr.hspace = value; }
53
54 String get name() { return _ptr.name; }
55
56 void set name(String value) { _ptr.name = value; }
57
58 String get standby() { return _ptr.standby; }
59
60 void set standby(String value) { _ptr.standby = value; }
61
62 String get type() { return _ptr.type; }
63
64 void set type(String value) { _ptr.type = value; }
65
66 String get useMap() { return _ptr.useMap; }
67
68 void set useMap(String value) { _ptr.useMap = value; }
69
70 String get validationMessage() { return _ptr.validationMessage; }
71
72 ValidityState get validity() { return LevelDom.wrapValidityState(_ptr.validity ); }
73
74 int get vspace() { return _ptr.vspace; }
75
76 void set vspace(int value) { _ptr.vspace = value; }
77
78 String get width() { return _ptr.width; }
79
80 void set width(String value) { _ptr.width = value; }
81
82 bool get willValidate() { return _ptr.willValidate; }
83
84 bool checkValidity() {
85 return _ptr.checkValidity();
86 }
87
88 void setCustomValidity(String error) {
89 _ptr.setCustomValidity(error);
90 return;
91 }
92 }
OLDNEW
« no previous file with comments | « client/html/generated/src/interface/ObjectElement.dart ('k') | client/html/html.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698