blob: 334f67ba7642ab04f5537d9c08fdaf0f121248a5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 20150 Mia-Software.
* 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:
* Grégoire Dupé (Mia-Sftware) - Bug 483400 - [Benchmark] The input size should be computable by the discoverer
*******************************************************************************/
package org.eclipse.modisco.infra.discovery.benchmark.core;
import org.eclipse.core.resources.IProject;
import org.eclipse.modisco.infra.discovery.core.IDiscoverer;
public interface ISizeDiscoverer extends IDiscoverer<IProject> {
String getUnit();
double getSize();
}