mirror of
https://github.com/corda/corda.git
synced 2025-01-01 10:46:46 +00:00
22 lines
518 B
Java
22 lines
518 B
Java
package vm;
|
|
|
|
public class VM {
|
|
public static native Object clone(Object o);
|
|
|
|
public static native Class<? extends Object> getClass(Object o);
|
|
|
|
public static native int hashCode(Object o);
|
|
|
|
public static native void notify(Object o);
|
|
|
|
public static native void notifyAll(Object o);
|
|
|
|
public static native String toString(Object o);
|
|
|
|
public static native void wait(Object o);
|
|
|
|
public static native void wait(Object o, long timeout);
|
|
|
|
public static native void wait(Object o, long timeout, int nanos);
|
|
}
|