fPerformanceMeterFactory= createPerformanceMeterFactory();
return fPerformanceMeterFactory;
}
private PerformanceMeterFactory createPerformanceMeterFactory() {
PerformanceMeterFactory factory;
factory= tryInstantiate(System.getProperty(PERFORMANCE_METER_FACTORY_PROPERTY));
if (factory != null)
return factory;
factory= tryInstantiate(Platform.getDebugOption(PerformanceTestPlugin.PLUGIN_ID + PERFORMANCE_METER_FACTORY));