blob: c0d19f7db32da4abb4ae138174d1525734fc7029 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.performance.util;
import org.eclipse.test.internal.performance.PerformanceMeterFactory;
import org.eclipse.test.performance.PerformanceMeter;
public class JdtCorePerformanceMeterFactory extends PerformanceMeterFactory {
protected PerformanceMeter doCreatePerformanceMeter(String scenario) {
return new JdtCorePerformanceMeter(scenario);
}
}