blob: 1cadbbb936e808ba46c15c67db344e295a5bdee0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering, Technische Universitaet Muenchen. 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:
******************************************************************************/
package org.eclipse.emf.ecp.common.observer;
import org.eclipse.emf.emfstore.common.observer.IObserver;
/**
* Observer for the event when a specific view is focused.
*
* @author Jonas
*/
public interface FocusEventObserver extends IObserver {
/**
* called if a view is focused.
*
* @param viewId the ID of the focused view
*/
void onFocusEvent(String viewId);
}