blob: 323e6d0327e068e9008aa1e11a83391d9122c449 [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:
* Eugen - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.emfstore.internal.ui.handler;
import org.eclipse.emf.ecp.emfstore.core.internal.EMFStoreProvider;
import org.eclipse.emf.ecp.spi.core.InternalProject;
import org.eclipse.emf.emfstore.client.ESLocalProject;
import org.eclipse.emf.emfstore.internal.client.ui.controller.UIRevertOperationController;
import org.eclipse.swt.widgets.Shell;
/**
* This is the EMFStore RevertAllOperations Helper delegating to the EMFStore {@link UIRevertOperationController}.
*
* @author Eugen Neufeld
*
*/
public final class RevertAllOperationsHelper {
private RevertAllOperationsHelper() {
}
/**
* Reverts all Operations from the selected {@link InternalProject}. Delegates to
* {@link UIRevertOperationController}.
*
* @param project the {@link InternalProject}
* @param shell the {@link Shell}
*/
public static void revert(InternalProject project, Shell shell) {
if (project == null) {
return;
}
final ESLocalProject projectSpace = EMFStoreProvider.INSTANCE.getProjectSpace(project);
// TODO EMFStore Constructor is missing
if (projectSpace != null) {
new UIRevertOperationController(shell, projectSpace).execute();
}
}
}