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

8 lines
284 B
Java
Raw Normal View History

package xsbti;
2009-10-17 15:48:39 +02:00
/** A launched application returns an instance of this class in order to communicate to the launcher
* that the application is completely 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();
}