OLD | NEW |
1 | 1 |
2 class OverflowEventJs extends EventJs implements OverflowEvent native "*Overflow
Event" { | 2 class _OverflowEventJs extends _EventJs implements OverflowEvent native "*Overfl
owEvent" { |
3 | 3 |
4 static final int BOTH = 2; | 4 static final int BOTH = 2; |
5 | 5 |
6 static final int HORIZONTAL = 0; | 6 static final int HORIZONTAL = 0; |
7 | 7 |
8 static final int VERTICAL = 1; | 8 static final int VERTICAL = 1; |
9 | 9 |
10 bool get horizontalOverflow() native "return this.horizontalOverflow;"; | 10 bool get horizontalOverflow() native "return this.horizontalOverflow;"; |
11 | 11 |
12 int get orient() native "return this.orient;"; | 12 int get orient() native "return this.orient;"; |
13 | 13 |
14 bool get verticalOverflow() native "return this.verticalOverflow;"; | 14 bool get verticalOverflow() native "return this.verticalOverflow;"; |
15 } | 15 } |
OLD | NEW |