blob: ea5ae8cdaa5bf5ae351dbe126930bed4379b8c19 [file] [log] [blame]
/*******************************************************************************
* 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 v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gr�goire Dup� (Mia-Software) - Bug 365808 - [Unit Test Failure][0.2/4.2][0.2/3.8] org.eclipse.modisco.facet.widgets.nattable.tests.NatTableAPITests
* Gr�goire Dup� (Mia-Software) - Bug 367153 - synchronization utilities
*******************************************************************************/
package org.eclipse.modisco.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;
}
}