* returns the PHPValue.getValue() instead of getValueString()).
*/
public Object getValue(Object element, String property) {
if (VariableColumnPresentation.COLUMN_VARIABLE_VALUE.equals(property)) {
if (element instanceof PHPVariable) {
PHPVariable variable = (PHPVariable) element;
try {
if (variable.getValue() instanceof PHPValue) {
return ((PHPValue) variable.getValue()).getValue();
}
return variable.getValue().getValueString();
} catch (DebugException e) {
PHPDebugUIPlugin.log(e);
}
}
}