mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
more JNI work
This commit is contained in:
27
classpath/java/lang/Object.java
Normal file
27
classpath/java/lang/Object.java
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user