final Class<? extends Statistic> theClass =
StatisticFactory.getInterface( origStatistic );
assert( theClass != null );
// this will create one which implements the requisite interfaces
statistics[ i ] = StatisticFactory.create( theClass, m.asMap() );
assert( theClass.isAssignableFrom( statistics[ i ].getClass() ));
}
return( statistics );