blob: 4ffe99c9a722e6a321d4e22257f4141fc8948403 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2012 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:
* IBM Corporation - initial API and implementation
* Wind River Systems - adopted to use for restart command
*******************************************************************************/
package org.eclipse.cdt.debug.core.command;
import org.eclipse.cdt.debug.core.model.IRestart;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.commands.IDebugCommandRequest;
import org.eclipse.debug.core.commands.IRestartHandler;
/**
* Default restart command for CDI
*
* @since 7.0
*/
public class RestartCommand extends CForEachCommand implements IRestartHandler {
@Override
protected Object getTarget(Object element) {
return getAdapter(element, IRestart.class);
}
@Override
protected void execute(Object target) throws CoreException {
((IRestart) target).restart();
}
@Override
protected boolean isExecutable(Object target) {
return ((IRestart) target).canRestart();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.commands.AbstractDebugCommand#getEnabledStateJobFamily(org.eclipse.debug.core.commands.IDebugCommandRequest)
*/
@Override
protected Object getEnabledStateJobFamily(IDebugCommandRequest request) {
return IRestart.class;
}
}