Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1afdd3de9e79ad774734f9ad9609e30fb290ba8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*******************************************************************************
 * 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 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Gr�goire Dup� (Mia-Software) - Bug 365808 - [Unit Test Failure][0.2/4.2][0.2/3.8] org.eclipse.papyrus.emf.facet.widgets.nattable.tests.NatTableAPITests
 *    Gr�goire Dup� (Mia-Software) - Bug 367153 - synchronization utilities
 *******************************************************************************/
package org.eclipse.papyrus.emf.facet.util.ui.internal.exported.displaysync;

public interface IRunnable<T extends Object, E extends Exception> {
	T run() throws E;
}

Back to the top