8407201516ebab562822e092799400c1f3332c54
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / externaltools / internal / menu / ExternalToolMenuDelegate.java
1 package net.sourceforge.phpdt.externaltools.internal.menu;
2
3 /**********************************************************************
4 Copyright (c) 2002 IBM Corp. and others. All rights reserved.
5 This file is made available under the terms of the Common Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/cpl-v10.html
8 **********************************************************************/
9
10 import org.eclipse.debug.ui.actions.AbstractLaunchToolbarAction;
11 import org.eclipse.ui.externaltools.internal.model.IExternalToolConstants;
12
13 /**
14  * This action delegate is responsible for producing the
15  * Run > External Tools sub menu contents, which includes
16  * an items to run last tool, favorite tools, and show the
17  * external tools view.
18  */
19 public class ExternalToolMenuDelegate extends AbstractLaunchToolbarAction {
20         
21         /**
22          * Creates the action delegate
23          */
24         public ExternalToolMenuDelegate() {
25                 super(IExternalToolConstants.ID_EXTERNAL_TOOLS_LAUNCH_GROUP);
26         }
27
28 }