// below The Resolvers should have Id's and the ability to determine if
// something is resolvable
ViewItemResolverFactory[] calculations = new ViewItemResolverFactory[] {
new FixedValueResolverFactory(new ResourceCountResolver()),
new CalculationResolverFactory(new SumCalculation()),
new CalculationResolverFactory(new AverageCalculation()),
new CalculationResolverFactory(new MinCalculation()),
new CalculationResolverFactory(new MaxCalculation()),
new FixedValueResolverFactory(new FixedValueResolver(
new Double(1), DataType.NUMBER)) };