org.bitbucket.bradleysmithllc.java_cl_parser.CapturingShutdownHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-cl-parser Show documentation
Show all versions of java-cl-parser Show documentation
This parser strives to achieve an elegant, ioc-type interface to make launching command-line projects
effortless.
package org.bitbucket.bradleysmithllc.java_cl_parser;
public class CapturingShutdownHandler extends ShutdownHandler
{
private Integer exit_code;
@Override
public synchronized Object shutdown(int code) {
exit_code = new Integer(code);
return null;
}
public Integer getExitCode() {
return exit_code;
}
}