OLD | NEW |
1 | 1 |
2 class HTMLFrameSetElementJs extends HTMLElementJs implements HTMLFrameSetElement
native "*HTMLFrameSetElement" { | 2 class _HTMLFrameSetElementJs extends _HTMLElementJs implements HTMLFrameSetEleme
nt native "*HTMLFrameSetElement" { |
3 | 3 |
4 String get cols() native "return this.cols;"; | 4 String get cols() native "return this.cols;"; |
5 | 5 |
6 void set cols(String value) native "this.cols = value;"; | 6 void set cols(String value) native "this.cols = value;"; |
7 | 7 |
8 String get rows() native "return this.rows;"; | 8 String get rows() native "return this.rows;"; |
9 | 9 |
10 void set rows(String value) native "this.rows = value;"; | 10 void set rows(String value) native "this.rows = value;"; |
11 } | 11 } |
OLD | NEW |