blob: 877847a08d8743eb1628ee050015a6dc3254e3be [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2015 IBM Corporation and others.
*
* 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:
* Manuel Selva <manuel.selva@st.com> - Bug 197922
*******************************************************************************/
package org.eclipse.ui.internal.handlers;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.ui.PlatformUI;
/**
* Provide a Handler for the Restart Workbench command.
*
*/
public class RestartWorkbenchHandler extends AbstractHandler {
@Override
public Object execute(ExecutionEvent event) {
PlatformUI.getWorkbench().restart(true);
return null;
}
}