blob: f42d77f9a2583e4edfaf8db291ad63e0c561dda7 [file] [log] [blame]
package test;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;
/**
* This class controls all aspects of the application's execution
*/
public class Application implements IApplication {
public Object start(IApplicationContext context) throws Exception {
System.out.println("Hello RCP World!");
return IApplication.EXIT_OK;
}
public void stop() {
// nothing to do
}
}