blob: b9c8b89c5e4b58f6789a4fcc97cfa9fbbf159ebd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2015 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eugen Neufeld - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.spi.context;
/**
* Requesting an instance of this will read in {@link org.eclipse.emf.ecp.view.spi.context.ViewModelService
* ViewModelServices} registered using an extension point and provide
* them as {@link org.eclipse.emfforms.spi.core.services.view.EMFFormsViewServiceFactory
* EMFFormsScopedServiceProviders}.
* There are no methods defined as this only is a marker so that the service doesn't start by itself.
*
* @author Eugen Neufeld
* @since 1.8
*
*/
public interface EMFFormsLegacyServicesManager {
/**
* Instantiates the ViewModelServices.
*/
void instantiate();
}