blob: cdee0c6af9277317cb203520a792731904d74e8e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2016 EclipseSource Muenchen GmbH and others.
*
* 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:
* Johannes Faltermeier - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.edit.spi.swt.commands;
import org.eclipse.core.runtime.IProgressMonitor;
/**
* Interface which marks classes which provide an {@link IProgressMonitor}.
*
* @author Johannes Faltermeier
* @since 1.11
*
*/
public interface IProgressMonitorProvider {
/**
* @return the {@link IProgressMonitor}
*/
IProgressMonitor getProgressMonitor();
}