Copyright (c) 2012-2016 Igor Fedorenko 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: Igor Fedorenko - initial API and implementation
/******************************************************************************* * Copyright (c) 2012-2016 Igor Fedorenko * * 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: * Igor Fedorenko - initial API and implementation *******************************************************************************/
package org.eclipse.jdt.internal.launching.sourcelookup.advanced; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor;
Runnable with progress interface. Almost exact copy of similar interfaces defined in jface and p2.
/** * Runnable with progress interface. Almost exact copy of similar interfaces defined in jface and p2. */
@FunctionalInterface public interface IRunnableWithProgress { public void run(IProgressMonitor monitor) throws CoreException; }