blob: 31e12b90762f1b26fb0a75aad9a13ed3d0eaf1c9 [file] [log] [blame]
package $packageName$;
import org.eclipse.rwt.lifecycle.IEntryPoint;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.application.WorkbenchAdvisor;
/**
* This class controls all aspects of the application's execution
* and is contributed through the plugin.xml.
*/
public class $applicationClass$ implements IEntryPoint {
public int createUI() {
Display display = PlatformUI.createDisplay();
WorkbenchAdvisor advisor = new ApplicationWorkbenchAdvisor();
return PlatformUI.createAndRunWorkbench( display, advisor );
}
}