All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xsbti.Reboot Maven / Gradle / Ivy

There is a newer version: 0.13.15
Show newest version
package xsbti;

import java.io.File;

/** 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 and a new working directory as well.*/
public interface Reboot extends MainResult
{
	public String[] arguments();
	public File baseDirectory();
	public String scalaVersion();
	public ApplicationID app();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy