YouDebug JDI Enhancements

com.sun.jdi
Class ObjectReference

Method Summary
void dumpStackTrace(Object out)
Dumps the stack trace of an exception.
Object methodMissing(String name, Object args)
Allow method invocation directly on the {@link ObjectReference} instance.
Object propertyMissing(String name)
Instance field retrieval.
void propertyMissing(String name, Object value)
Instance field assignment.
String toString()
Override the default behavior of {@link ObjectReference#toString()} and instead call the remote {@link Object#toString()} method.
 
Method Detail

dumpStackTrace

public void dumpStackTrace(Object out)
 
Dumps the stack trace of an exception.
Parameters:

methodMissing

public Object methodMissing(String name, Object args)
 
Allow method invocation directly on the {@link ObjectReference} instance.
Parameters:

propertyMissing

public Object propertyMissing(String name)
 
Instance field retrieval.
Parameters:

propertyMissing

public void propertyMissing(String name, Object value)
 
Instance field assignment.
Parameters:

toString

public String toString()
 
Override the default behavior of {@link ObjectReference#toString()} and instead call the remote {@link Object#toString()} method.

YouDebug JDI Enhancements