public CachedValueCalculatingDataProvider(EventList<T> list,
IColumnAccessor<T> columnAccessor) {
super(list, columnAccessor);
// create the CalculatedValueCache without layer reference, as the
// data provider is no layer
this.valueCache = new CalculatedValueCache(null, true, true);
}