public Object getValueAt(TableModel original, Object node, String columnID)
throws UnknownTypeException
{
if (node instanceof LocalVariable && columnID.compareTo("LocalsValue") == 0)
{
LocalVariable localVar = (LocalVariable) node;
String varName = localVar.getName();
try {
return (String) _getValueFn.invoke(varName);
} catch (Exception ex) {
Exceptions.printStackTrace(ex);
}