blob: 8b64ce5be856b7cf62cfe7d37899d3e4fc57c4f5 [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;
/**
* A Marker interface for classes which may consume an {@link IProgressMonitorProvider}.
*
* @author Johannes Faltermeier
* @since 1.11
*
*/
public interface IProgressMonitorConsumer {
/**
* @param monitor the {@link IProgressMonitorProvider}
*/
void setIProgressMonitorAccessor(IProgressMonitorProvider monitor);
}