OLD | NEW |
1 | 1 |
2 class HTMLAppletElementJs extends HTMLElementJs implements HTMLAppletElement nat
ive "*HTMLAppletElement" { | 2 class _HTMLAppletElementJs extends _HTMLElementJs implements HTMLAppletElement n
ative "*HTMLAppletElement" { |
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 alt() native "return this.alt;"; | 8 String get alt() native "return this.alt;"; |
9 | 9 |
10 void set alt(String value) native "this.alt = value;"; | 10 void set alt(String value) native "this.alt = value;"; |
11 | 11 |
12 String get archive() native "return this.archive;"; | 12 String get archive() native "return this.archive;"; |
(...skipping 25 matching lines...) Expand all Loading... |
38 void set object(String value) native "this.object = value;"; | 38 void set object(String value) native "this.object = value;"; |
39 | 39 |
40 String get vspace() native "return this.vspace;"; | 40 String get vspace() native "return this.vspace;"; |
41 | 41 |
42 void set vspace(String value) native "this.vspace = value;"; | 42 void set vspace(String value) native "this.vspace = value;"; |
43 | 43 |
44 String get width() native "return this.width;"; | 44 String get width() native "return this.width;"; |
45 | 45 |
46 void set width(String value) native "this.width = value;"; | 46 void set width(String value) native "this.width = value;"; |
47 } | 47 } |
OLD | NEW |