blob: 37e7dbb7fe19f114e2cb5cf8ccc11ac1509752bf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 RCP Vision (http://www.rcp-vision.com) 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:
* Lorenzo Bettini - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.listeners;
import org.eclipse.emf.common.command.Command;
/**
* A client of the command stack listener that will be notified after a command
* has been executed.
*
* @author Lorenzo Bettini - Initial contribution and API
*
*/
public interface AsyncCommandStackListenerClient {
/**
* This is called when the last executed command affects a resource the
* client is interested in.
*
* @param mostRecentCommand
*/
void mostRecentCommandAffectsResource(Command mostRecentCommand);
/**
* This is called after {@link #mostRecentCommandAffectsResource(Command)},
* even if the last command did not affect a resource the client is
* interested in.
*
* @param mostRecentCommand
*/
void postCommandStackChanged(Command mostRecentCommand);
}