blob: bf6af9d23b2a33a164def6bcba8ed34a7ddaafd1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: ProxyLaunchMenuDelegate.java,v $
* $Revision: 1.3 $ $Date: 2005/08/24 21:07:12 $
*/
package org.eclipse.jem.internal.ui.proxy;
import org.eclipse.debug.ui.actions.OpenLaunchDialogAction;
import org.eclipse.jem.internal.proxy.core.IProxyConstants;
/**
* Menu delegate to launch the Proxy Launch Manager.
* @since 1.0.0
*/
public class ProxyLaunchMenuDelegate extends OpenLaunchDialogAction {
public ProxyLaunchMenuDelegate() {
super(IProxyConstants.ID_PROXY_LAUNCH_GROUP);
}
}