OLD | NEW |
1 | 1 |
2 class AttrJs extends NodeJs implements Attr native "*Attr" { | 2 class _AttrJs extends _NodeJs implements Attr native "*Attr" { |
3 | 3 |
4 bool get isId() native "return this.isId;"; | 4 bool get isId() native "return this.isId;"; |
5 | 5 |
6 String get name() native "return this.name;"; | 6 String get name() native "return this.name;"; |
7 | 7 |
8 ElementJs get ownerElement() native "return this.ownerElement;"; | 8 _ElementJs get ownerElement() native "return this.ownerElement;"; |
9 | 9 |
10 bool get specified() native "return this.specified;"; | 10 bool get specified() native "return this.specified;"; |
11 | 11 |
12 String get value() native "return this.value;"; | 12 String get value() native "return this.value;"; |
13 | 13 |
14 void set value(String value) native "this.value = value;"; | 14 void set value(String value) native "this.value = value;"; |
15 } | 15 } |
OLD | NEW |