Class java.lang.Object (1.0)
public class Object {
// Public Constructor
public Object( ); // Empty
// Public Instance Methods
public boolean equals(Object obj);
public final Class getClass( );
public int hashCode( );
public final void notify( ) throws IllegalMonitorStateException;
public final void notifyAll( ) throws IllegalMonitorStateException;
public String toString( );
public final void wait(long timeout) throws InterruptedException, IllegalMonitorStateException, IllegalArgumentException;
public final void wait(long timeout, int nanos) throws InterruptedException, IllegalMonitorStateException, IllegalArgumentException;
public final void wait( ) throws InterruptedException, IllegalMonitorStateException;
// Protected Instance Methods
protected Object clone( ) throws CloneNotSupportedException, OutOfMemoryError;
protected void finalize( ) throws Throwable; // Empty
}