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

Side by Side Diff: client/dom/generated/src/frog/HTMLOutputElement.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 1
2 class HTMLOutputElementJs extends HTMLElementJs implements HTMLOutputElement nat ive "*HTMLOutputElement" { 2 class _HTMLOutputElementJs extends _HTMLElementJs implements HTMLOutputElement n ative "*HTMLOutputElement" {
3 3
4 String get defaultValue() native "return this.defaultValue;"; 4 String get defaultValue() native "return this.defaultValue;";
5 5
6 void set defaultValue(String value) native "this.defaultValue = value;"; 6 void set defaultValue(String value) native "this.defaultValue = value;";
7 7
8 HTMLFormElementJs get form() native "return this.form;"; 8 _HTMLFormElementJs get form() native "return this.form;";
9 9
10 DOMSettableTokenListJs get htmlFor() native "return this.htmlFor;"; 10 _DOMSettableTokenListJs get htmlFor() native "return this.htmlFor;";
11 11
12 void set htmlFor(DOMSettableTokenListJs value) native "this.htmlFor = value;"; 12 void set htmlFor(_DOMSettableTokenListJs value) native "this.htmlFor = value;" ;
13 13
14 NodeListJs get labels() native "return this.labels;"; 14 _NodeListJs get labels() native "return this.labels;";
15 15
16 String get name() native "return this.name;"; 16 String get name() native "return this.name;";
17 17
18 void set name(String value) native "this.name = value;"; 18 void set name(String value) native "this.name = value;";
19 19
20 String get type() native "return this.type;"; 20 String get type() native "return this.type;";
21 21
22 String get validationMessage() native "return this.validationMessage;"; 22 String get validationMessage() native "return this.validationMessage;";
23 23
24 ValidityStateJs get validity() native "return this.validity;"; 24 _ValidityStateJs get validity() native "return this.validity;";
25 25
26 String get value() native "return this.value;"; 26 String get value() native "return this.value;";
27 27
28 void set value(String value) native "this.value = value;"; 28 void set value(String value) native "this.value = value;";
29 29
30 bool get willValidate() native "return this.willValidate;"; 30 bool get willValidate() native "return this.willValidate;";
31 31
32 bool checkValidity() native; 32 bool checkValidity() native;
33 33
34 void setCustomValidity(String error) native; 34 void setCustomValidity(String error) native;
35 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLOptionsCollection.dart ('k') | client/dom/generated/src/frog/HTMLParagraphElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698