blob: 901b1681b2ee969d48b39cea3104960788166f83 [file] [log] [blame]
package org.eclipse.jdt.internal.junit.ui;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.IType;
/**
* Interface to JUnitLaunchers
*/
public interface IJUnitLauncherDelegate {
/**
* Returns the launched type.
*/
IType getLaunchedType();
/**
* Returns the port the TestRunner will connect to.
*/
int getPort();
/**
* Returns the launche mode
*/
String getRunMode();
}