return computeResult();
}
private Object computeResult() {
Object result = null;
GeometryFunction currentFunc = frame.getTestCasePanel().getSpatialFunctionPanel().getFunction();
if (currentFunc == null)
return null;
try {
timer = new Stopwatch();
result = currentFunc.invoke(model.getGeometryEditModel().getGeometry(0),
frame.getTestCasePanel().getSpatialFunctionPanel().getFunctionParams());
timer.stop();
// result = currentState.getActualValue();
}
catch (Exception ex) {