Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e233abbc4276474cfbbcc20a1d1a9fcc2559fc90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*******************************************************************************
 * Copyright (c) 2008-2010 Sonatype, Inc.
 * 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:
 *      Sonatype, Inc. - initial API and implementation
 *******************************************************************************/

package org.eclipse.m2e.integration.tests.common;

import org.eclipse.swt.widgets.Display;

/**
 * Executes a task on the UI thread. Task can return an object to caller, and
 * any exceptions which occur will be re-thrown in the calling thread.
 */
public abstract class UIThreadTask implements Runnable {
	private Object result = null;

	private Exception exception = null;

	final public void run() {
		try {
			result = runEx();
		} catch (Exception ex) {
			exception = ex;
		}
	}

	public Exception getException() {
		return exception;
	}

	public Object getResult() {
		return result;
	}

	public abstract Object runEx() throws Exception;

	public static Object executeOnEventQueue(UIThreadTask task)
			throws Exception {
		if (Display.getDefault().getThread() == Thread.currentThread()) {
			task.run();
		} else {
			Display.getDefault().syncExec(task);
		}
		if (task.getException() != null) {
			throw task.getException();
		}
		return task.getResult();
	}
}

Back to the top