sbt/launch/interface/src/main/java/xsbti/Reboot.java

16 lines
506 B
Java
Raw Normal View History

package xsbti;
2009-09-26 08:18:04 +02:00
import java.io.File;
2014-01-06 14:08:02 +01:00
/**
* A launched application returns an instance of this class in order to communicate to the launcher
* that the application should be restarted. Different versions of the application and Scala can be used.
* The application can be given different arguments as well as a new working directory.
*/
2009-08-21 14:12:43 +02:00
public interface Reboot extends MainResult
{
public String[] arguments();
2009-09-26 08:18:04 +02:00
public File baseDirectory();
public String scalaVersion();
public ApplicationID app();
2009-08-21 14:12:43 +02:00
}