List<Double> result = VDMClassHelper.getDoubleListFromValue(value);
if (result != null)
{
return result;
}
throw new RemoteSimulationException("Could not get parameter: "
+ name);
} catch (ValueException e)
{
debugErr(e);
throw new RemoteSimulationException("Could not get parameter: "
+ name, e);
}
}