blob: 51d1a4c5834ea47ec0591d12c1fe8ca051aed839 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.monitor.ui;
import org.eclipse.jface.action.IAction;
/**
* Notified of user action executions.
*
* @author Mik Kersten
* @since 2.0
*/
public interface IActionExecutionListener {
public void actionObserved(IAction action);
}