blob: 4a0e44fa079bf117fd73033a0773505dda6aaf4d [file] [log] [blame]
/*
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
*
* $Id: ProgressMonitorWithBlocking.java,v 1.2 2004/04/10 04:09:50 khussey Exp $
*/
package org.eclipse.uml2.util;
import org.eclipse.emf.common.util.Diagnostic;
/**
*
*/
public interface ProgressMonitorWithBlocking {
public void setBlocked(Diagnostic reason);
public void clearBlocked();
}