OLD | NEW |
1 | 1 |
2 class DOMPluginJs extends DOMTypeJs implements DOMPlugin native "*DOMPlugin" { | 2 class _DOMPluginJs extends _DOMTypeJs implements DOMPlugin native "*DOMPlugin" { |
3 | 3 |
4 String get description() native "return this.description;"; | 4 String get description() native "return this.description;"; |
5 | 5 |
6 String get filename() native "return this.filename;"; | 6 String get filename() native "return this.filename;"; |
7 | 7 |
8 int get length() native "return this.length;"; | 8 int get length() native "return this.length;"; |
9 | 9 |
10 String get name() native "return this.name;"; | 10 String get name() native "return this.name;"; |
11 | 11 |
12 DOMMimeTypeJs item(int index) native; | 12 _DOMMimeTypeJs item(int index) native; |
13 | 13 |
14 DOMMimeTypeJs namedItem(String name) native; | 14 _DOMMimeTypeJs namedItem(String name) native; |
15 } | 15 } |
OLD | NEW |