// TODO the slot mapping configuration should be what defines these
// 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)) };
resolverFactorySelector = new ListBoxControl<ViewItemResolverFactory>(
new ExtendedListBox(false),
new Converter<ViewItemResolverFactory, String>() {