blob: 635830b552f810ccff72cd75a6d1b237c9ebe374 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2014 itemis 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:
* itemis - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.sphinx.emf.metamodelgen.operations;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.sphinx.platform.operations.IWorkspaceOperation;
public interface IGenerateFromEcoreOperation extends IWorkspaceOperation {
void generate(EPackage ecoreModel, IProgressMonitor monitor) throws CoreException, OperationCanceledException;
}