/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang; public class Object { public Object() { } native public final Class getClass(); native public int hashCode(); native public boolean equals(Object obj); native protected Object clone() throws CloneNotSupportedException; native public String toString(); native public final void notify(); native public final void notifyAll(); native public final void wait(long timeout) throws InterruptedException; native public final void wait(long timeout, int nanos) throws InterruptedException; native public final void wait() throws InterruptedException; native protected void finalize() throws Throwable; }