| OLD | NEW |
| 1 | 1 |
| 2 class _HTMLAppletElementJs extends _HTMLElementJs implements HTMLAppletElement n
ative "*HTMLAppletElement" { | 2 class _HTMLAppletElementJs extends _HTMLElementJs implements HTMLAppletElement n
ative "*HTMLAppletElement" { |
| 3 | 3 |
| 4 String get align() native "return this.align;"; | 4 String align; |
| 5 | 5 |
| 6 void set align(String value) native "this.align = value;"; | 6 String alt; |
| 7 | 7 |
| 8 String get alt() native "return this.alt;"; | 8 String archive; |
| 9 | 9 |
| 10 void set alt(String value) native "this.alt = value;"; | 10 String code; |
| 11 | 11 |
| 12 String get archive() native "return this.archive;"; | 12 String codeBase; |
| 13 | 13 |
| 14 void set archive(String value) native "this.archive = value;"; | 14 String height; |
| 15 | 15 |
| 16 String get code() native "return this.code;"; | 16 String hspace; |
| 17 | 17 |
| 18 void set code(String value) native "this.code = value;"; | 18 String name; |
| 19 | 19 |
| 20 String get codeBase() native "return this.codeBase;"; | 20 String object; |
| 21 | 21 |
| 22 void set codeBase(String value) native "this.codeBase = value;"; | 22 String vspace; |
| 23 | 23 |
| 24 String get height() native "return this.height;"; | 24 String width; |
| 25 | |
| 26 void set height(String value) native "this.height = value;"; | |
| 27 | |
| 28 String get hspace() native "return this.hspace;"; | |
| 29 | |
| 30 void set hspace(String value) native "this.hspace = value;"; | |
| 31 | |
| 32 String get name() native "return this.name;"; | |
| 33 | |
| 34 void set name(String value) native "this.name = value;"; | |
| 35 | |
| 36 String get object() native "return this.object;"; | |
| 37 | |
| 38 void set object(String value) native "this.object = value;"; | |
| 39 | |
| 40 String get vspace() native "return this.vspace;"; | |
| 41 | |
| 42 void set vspace(String value) native "this.vspace = value;"; | |
| 43 | |
| 44 String get width() native "return this.width;"; | |
| 45 | |
| 46 void set width(String value) native "this.width = value;"; | |
| 47 } | 25 } |
| OLD | NEW |