blob: d2d087851d0384be7dfd2ba83bbc2b6f0bd39ef8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 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:
* jfaltermeier - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.model.common.di.service;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.emf.ecp.view.spi.context.ViewModelService;
import org.eclipse.emf.ecp.view.spi.model.VElement;
/**
* {@link ViewModelService} for registering and retrieving the {@link IEclipseContext} associated with a view.
*
* @author jfaltermeier
*
*/
public interface EclipseContextViewService extends ViewModelService {
/**
* Sets the context for the {@link VElement}.
*
* @param element the element associated with the context
* @param context the {@link IEclipseContext}.
*/
void putContext(VElement element, IEclipseContext context);
/**
* Returns the context associated with the given {@link VElement}.
*
* @param element the element for which the {@link IEclipseContext} is to be returned.
*
* @return the {@link IEclipseContext}
*/
IEclipseContext getContext(VElement element);
}