mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
28 lines
477 B
Java
28 lines
477 B
Java
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 final void wait() {
|
|
wait(0);
|
|
}
|
|
|
|
public native final void wait(long timeout);
|
|
}
|