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

12 lines
373 B
Java
Raw Normal View History

package xsbti;
2009-08-21 14:12:43 +02:00
2014-01-06 14:08:02 +01:00
/**
* A launched application should return an instance of this from its 'run' method
* to communicate to the launcher what should be done now that the application
* has completed. This interface should be treated as 'sealed', with Exit and Reboot the only
* direct subtypes.
*
* @see xsbti.Exit
* @see xsbti.Reboot
*/
2009-10-17 15:48:39 +02:00
public interface MainResult {}