Java Code Examples for org.eclipse.core.runtime.adaptor.EclipseStarter#shutdown()

The following examples show how to use org.eclipse.core.runtime.adaptor.EclipseStarter#shutdown() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EclipseDaemon.java    From neoscada with Eclipse Public License 1.0 2 votes vote down vote up
/**
 * Stop the framework
 * 
 * @see #stop()
 * @param args
 * @throws Exception
 */

public static void stop ( final String[] args ) throws Exception
{
    EclipseStarter.shutdown ();
}
 
Example 2
Source File: EclipseDaemon.java    From neoscada with Eclipse Public License 1.0 2 votes vote down vote up
/**
 * The method shuts down the framework
 * <p>
 * The framework could have been started by {@link #start(String[])} or
 * {@link #main(String[])}.
 * </p>
 * 
 * @throws Exception
 *             if anything goes wrong
 */
public static void stop () throws Exception
{
    EclipseStarter.shutdown ();
}