various classpath updates to help SWT build

This commit is contained in:
Joel Dice
2007-08-30 17:31:32 -06:00
parent 8b102783a6
commit a4b4f36c5b
14 changed files with 358 additions and 16 deletions

View File

@ -27,9 +27,9 @@ public class Object {
public native String toString();
public final void wait() {
public final void wait() throws InterruptedException {
wait(0);
}
public native final void wait(long timeout);
public native final void wait(long timeout) throws InterruptedException;
}