fixes #226. allow launched applications to signal the launcher's job is complete by returning Continue

This commit is contained in:
Mark Harrah
2011-10-14 19:53:01 -04:00
parent 2c9e943daa
commit bb84e32291
3 changed files with 25 additions and 18 deletions
@@ -0,0 +1,5 @@
package xsbti;
/** A launched application returns an instance of this class in order to communicate to the launcher
* that the application's main thread is finished and the launcher's work is complete, but it should not exit.*/
public interface Continue extends MainResult {}