blob: 69a8ce9823b26acab69e875caa8f82f51684eeaa [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.List;
import java.util.Map;
public interface ObjectReference extends com.sun.jdi.Value {
public static final int INVOKE_SINGLE_THREADED = 1;
public static final int INVOKE_NONVIRTUAL = 2;
public void disableCollection();
public void enableCollection();
public int entryCount() throws IncompatibleThreadStateException;
public boolean equals(Object arg1);
public Value getValue(Field arg1);
public Map getValues(java.util.List arg1);
public int hashCode();
public Value invokeMethod(ThreadReference arg1, Method arg2, List arg3, int arg4) throws InvalidTypeException, ClassNotLoadedException, IncompatibleThreadStateException, InvocationException;
public boolean isCollected();
public ThreadReference owningThread() throws IncompatibleThreadStateException; public com.sun.jdi.ReferenceType referenceType();
public void setValue(Field arg1, Value arg2) throws InvalidTypeException, ClassNotLoadedException;
public long uniqueID();
public List waitingThreads() throws IncompatibleThreadStateException;
}