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

10 lines
276 B
Java
Raw Normal View History

package xsbti;
2009-10-17 15:48:39 +02:00
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 finished and the launcher should exit with the given exit code.
*/
2009-08-21 14:12:43 +02:00
public interface Exit extends MainResult
{
public int code();
}