Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1d86484a72d12b7939d9fece94dc9541ffc792ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*******************************************************************************
 * Copyright (c) 2011 Mia-Software.
 * 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:
 *    Grégoire Dupé (Mia-Software) - Bug 365808 - [Unit Test Failure][0.2/4.2][0.2/3.8] org.eclipse.emf.facet.widgets.nattable.tests.NatTableAPITests
 *    Grégoire Dupé (Mia-Software) - Bug 367153 - synchronization utilities
 *******************************************************************************/
package org.eclipse.emf.facet.util.ui.internal.exported.displaysync;

public abstract class AbstractVoidExceptionFreeRunnable implements
		IRunnable<Object, Exception> {
	public abstract void voidSafeRun();

	public Object run() throws Exception {
		voidSafeRun();
		return null;
	}
}

Back to the top