blob: cd5ef96362e691cf4745dcf88aca2101df447fae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2013 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:
* Eugen Neufeld - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.spi.context;
/**
* The AbstractViewService is a common super type for all View Services. This way the {@link ViewModelContext} is
* responsible for managing the lifecycle of all attached services. This is important, so that no service tries to do
* something while the model is not the current one anymore.
*
* @author Eugen Neufeld
* @since 1.2
*/
public interface ViewModelService {
/**
* Instantiate the view service.
*
* @param context the {@link ViewModelContext}
*/
void instantiate(ViewModelContext context);
/**
* Dispose.
*/
void dispose();
/**
* Returns the priority for this view service.
*
* @return the priority
*/
int getPriority();
}