/**
* Refreshes the inspector view.
*/
protected void refresh()
{
DebuggerService debuggerService = (DebuggerService) ServerConnection.getInstance().lookupOptionalService(DebuggerService.class);
if (debuggerService == null)
{
return;
}
determineDebuggerId();
List callStackElements = null;
try
{
callStackElements = debuggerService.getCallStackElements(debuggerId);
}
catch (OpenBPException e)
{
// Ignore
}