blob: 3d370fbe27d75a6511b61e4e1ed0a6afa8b7ffa8 [file] [log] [blame]
/*****************************************************************
* Copyright (c) 2010, 2011 Texas Instruments 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:
* Patrick Chuong (Texas Instruments) - Move debug toolbar actions to main window (Bug 332784)
*****************************************************************/
package org.eclipse.debug.internal.ui.commands.actions;
/**
* Disconnect action delegate.
*
* @since 3.7
*/
public class DisconnectCommandActionDelegate extends DebugCommandActionDelegate {
public DisconnectCommandActionDelegate() {
super();
setAction(new DisconnectCommandAction());
}
}