blob: 2c49da20e90f00352d8da0ce99a984698bb80b2c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2019 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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Lucas Koehler - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.spi.editor.controls;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecp.view.internal.editor.handler.CreateSegmentDmrWizard;
import org.eclipse.emf.ecp.view.spi.context.ViewModelService;
/**
* Makes the currently selected feature of a wizard page available.
* This allows to access this feature by a rendered view contained in the page.
* This is needed for the proper creation of mapping segments in the {@link CreateSegmentDmrWizard}.
*
* @author Lucas Koehler
* @since 1.20
*
*/
public interface SelectedFeatureViewService extends ViewModelService {
/**
* @return The selected feature
*/
EStructuralFeature getFeature();
}