org.eclipse.swt.SwtRunnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.swt.win32.win32.x86_64 Show documentation
Show all versions of org.eclipse.swt.win32.win32.x86_64 Show documentation
Standard Widget Toolkit for Windows
The newest version!
/*******************************************************************************
* Copyright (c) 2022 Christoph Läubrich and others
*
* 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:
* Christoph Läubrich - initial API and implementation
*******************************************************************************/
package org.eclipse.swt;
/**
* A method that returns no result and may throw a checked exception of the given
* type.
* @since 3.123
*/
@FunctionalInterface
public interface SwtRunnable {
/**
* runs a given action, or throws an exception.
*
* @throws E the Exception of given type
*/
void run() throws E;
}