more JNI work

This commit is contained in:
Joel Dice
2007-06-24 19:34:07 -06:00
parent f606f2d30a
commit 400b3633d7
13 changed files with 1291 additions and 115 deletions

View File

@ -0,0 +1,27 @@
package java.lang;
public class Object {
protected native Object clone();
public boolean equals(Object o) {
return this == o;
}
protected void finalize() { }
public native final Class<? extends Object> getClass();
public native int hashCode();
public native final void notify();
public native final void notifyAll();
public native String toString();
public native final void wait();
public native final void wait(long timeout);
public native final void wait(long timeout, int nanos);
}