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

Side by Side Diff: client/dom/generated/src/frog/HTMLTableRowElement.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 HTMLTableRowElementJs extends HTMLElementJs implements HTMLTableRowElement native "*HTMLTableRowElement" { 2 class _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowEleme nt native "*HTMLTableRowElement" {
3 3
4 String get align() native "return this.align;"; 4 String get align() native "return this.align;";
5 5
6 void set align(String value) native "this.align = value;"; 6 void set align(String value) native "this.align = value;";
7 7
8 String get bgColor() native "return this.bgColor;"; 8 String get bgColor() native "return this.bgColor;";
9 9
10 void set bgColor(String value) native "this.bgColor = value;"; 10 void set bgColor(String value) native "this.bgColor = value;";
11 11
12 HTMLCollectionJs get cells() native "return this.cells;"; 12 _HTMLCollectionJs get cells() native "return this.cells;";
13 13
14 String get ch() native "return this.ch;"; 14 String get ch() native "return this.ch;";
15 15
16 void set ch(String value) native "this.ch = value;"; 16 void set ch(String value) native "this.ch = value;";
17 17
18 String get chOff() native "return this.chOff;"; 18 String get chOff() native "return this.chOff;";
19 19
20 void set chOff(String value) native "this.chOff = value;"; 20 void set chOff(String value) native "this.chOff = value;";
21 21
22 int get rowIndex() native "return this.rowIndex;"; 22 int get rowIndex() native "return this.rowIndex;";
23 23
24 int get sectionRowIndex() native "return this.sectionRowIndex;"; 24 int get sectionRowIndex() native "return this.sectionRowIndex;";
25 25
26 String get vAlign() native "return this.vAlign;"; 26 String get vAlign() native "return this.vAlign;";
27 27
28 void set vAlign(String value) native "this.vAlign = value;"; 28 void set vAlign(String value) native "this.vAlign = value;";
29 29
30 void deleteCell(int index) native; 30 void deleteCell(int index) native;
31 31
32 HTMLElementJs insertCell(int index) native; 32 _HTMLElementJs insertCell(int index) native;
33 } 33 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableElement.dart ('k') | client/dom/generated/src/frog/HTMLTableSectionElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698