blob: 7a14035f9c7a8b3e65e77fe84837fbd188ca67d4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas Bros (Mia-Software) - initial API and implementation
*******************************************************************************/
package org.eclipse.modisco.infra.browser.editors;
import org.eclipse.jface.viewers.ISelectionChangedListener;
/**
* Listeners on the Model Browser implementing this interface will receive
* selection events with the original proxy objects (whereas listeners merely
* implementing ISelectionChangedListener will receive the Ecore model elements
* underlying the selected elements)
*/
public interface IBrowserSelectionChangedListener extends ISelectionChangedListener {
// empty interface: used for tagging
}