Community
Participate
Working Groups
</iterate>
</activeWhen>
</handler>
<handler
class="org.eclipse.debug.internal.ui.commands.actions.RestartCommandHandler"
commandId="org.eclipse.debug.ui.commands.Restart"
helpContextId="restart_action_context">
</extension>
</plugin>
import org.eclipse.jface.resource.ImageDescriptor;
/**
* Handler for the
* Handler for the Restart action
*
* @since 3.6
*/
public class RestartCommandAction extends DebugCommandAction {
public RestartCommandAction() {
setActionDefinitionId("org.eclipse.debug.ui.commands.Restart"); //$NON-NLS-1$
}
protected Class getCommandType() {
return IRestartHandler.class;
/*******************************************************************************
* Copyright (c) 2009 Wind River Systems 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:
* Wind River Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.commands.actions;
import org.eclipse.debug.core.commands.IRestartHandler;
import org.eclipse.debug.ui.actions.DebugCommandHandler;
* Command candler for the restart command (to enable key-binding activation).
public class RestartCommandHandler extends DebugCommandHandler {