This commit is contained in:
Joel Dice
2007-07-07 17:47:35 -06:00
parent e5bea7a455
commit f71c77298c
18 changed files with 482 additions and 176 deletions

View File

@ -19,9 +19,9 @@ public class Object {
public native String toString();
public native final void wait();
public final void wait() {
wait(0);
}
public native final void wait(long timeout);
public native final void wait(long timeout, int nanos);
}