blob: e289db259a23a7081e36905e31f0107ec25d3f07 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.ui;
import org.eclipse.core.runtime.IPlatformRunnable;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.PlatformUI;
/**
* Application to run an Ant script after starting the workbench. Shuts down the
* workbench after the script runs.
*
* @since 3.4
*/
public class WorkbenchAntRunner implements IPlatformRunnable {
public Object run(Object args) throws Exception {
Display display = PlatformUI.createDisplay();
try {
Shell shell = new Shell(display, SWT.ON_TOP);
shell.dispose();
// create the workbench with this advisor and run it until it exits
// N.B. createWorkbench remembers the advisor, and also registers
// the workbench globally so that all UI plug-ins can find it using
// PlatformUI.getWorkbench() or AbstractUIPlugin.getWorkbench()
PlatformUI.createAndRunWorkbench(display,
new AntRunnerWorkbenchAdvisor(args));
return EXIT_OK;
} finally {
if (display != null) {
display.dispose();
}
}
}
}