blob: c12d4c9bc81c0e0c6d23b17d434eb0c7f66f1974 [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:
* Lucas Koehler- initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.migrator;
import org.eclipse.emf.common.util.URI;
/**
* @author Lucas Koehler
*
*/
public interface ViewModelMigrator {
/**
* Checks whether a view model needs to be migrated.
*
* @param resourceURI The URI of the view model that should be checked.
* @return true, if the view model does not require a migration, false otherwise.
*/
boolean checkMigration(URI resourceURI);
/**
* Migrates a view model to the latest version.
*
* @param resourceURI The URI of the view model that should be migrated.
* @throws ViewModelMigrationException in case of an error
*/
void performMigration(URI resourceURI) throws ViewModelMigrationException;
}