blob: e9fa06da7b3504496c0540d9d205ec11ccf584bf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2013 EclipseSource Muenchen GmbH 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:
* Eugen Neufeld - initial API and implementation
*
*******************************************************************************/
package org.eclipse.emf.ecp.ui.linkedView;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IViewSite;
public interface ILinkedWithEditorView {
/**
* Called to tell the view, that a certain {@link IEditorPart} has been activated.
*
* @param activatedEditor The activated {@link IEditorPart}
*/
void editorActivated(IEditorPart activatedEditor);
IViewSite getViewSite();
}