blob: 63dc42837f550f3440e9cb84cfed41d835ccd2fd [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.internal.view;
import org.eclipse.emf.ecore.EObject;
/** An interface that supports editing the query context */
//Copied from org.eclipse.modisco.facet.infra.query.ui.views.queryExecution.internal.EditableContext
public interface EditableContext {
void add(EObject eObject);
void remove(EObject eObject);
void clear();
/** must be called after editing to refresh the viewers */
void done();
}