blob: 3f81e935a53fbb1b85884ecf7690b3f1f2c85ca8 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2002-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
*
* </copyright>
*
* $Id: CommandStackListener.java,v 1.1 2005/04/15 23:31:25 david_williams Exp $
*/
package org.eclipse.emf.common.command;
import java.util.EventObject;
/**
* A listener to a {@link org.eclipse.emf.common.command.CommandStack}.
*/
public interface CommandStackListener
{
/**
* Called when the {@link org.eclipse.emf.common.command.CommandStack}'s state has changed.
* @param event the event.
*/
void commandStackChanged(EventObject event);
}