blob: 745387c2371435c3fdfed13b6aba1cc4e0a32743 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 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)
* Gregoire Dupe (Mia-Software) - Bug 364325 - [Restructuring] The user must be able to navigate into a model using the Facet.
*******************************************************************************/
package org.eclipse.modisco.facet.efacet.ui;
import java.util.List;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.modisco.facet.efacet.metamodel.v0_2_0.efacet.runtime.ETypedElementResult;
/**
* Implemented by a view or editor that wants to be used to display the results
* of a model query.
*/
//Copied from org.eclipse.modisco.facet.infra.query.ui.views.queryExecution.QueryResultDisplayer
public interface IETypedElementResultDisplayer {
void displayETypedElementResults(final List<ETypedElementResult> result, EditingDomain editingDomain);
String getName();
}