first version of external tools
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / externaltools / internal / menu / ExternalToolMenuDelegate.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/externaltools/internal/menu/ExternalToolMenuDelegate.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/externaltools/internal/menu/ExternalToolMenuDelegate.java
new file mode 100644 (file)
index 0000000..205a8fd
--- /dev/null
@@ -0,0 +1,28 @@
+package net.sourceforge.phpdt.externaltools.internal.menu;
+
+/**********************************************************************
+Copyright (c) 2002 IBM Corp. and others. All rights reserved.
+This file is made available under the terms of the Common Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/cpl-v10.html
+**********************************************************************/
+
+import org.eclipse.debug.ui.actions.AbstractLaunchToolbarAction;
+import net.sourceforge.phpdt.externaltools.model.IExternalToolConstants;
+
+/**
+ * This action delegate is responsible for producing the
+ * Run > External Tools sub menu contents, which includes
+ * an items to run last tool, favorite tools, and show the
+ * external tools view.
+ */
+public class ExternalToolMenuDelegate extends AbstractLaunchToolbarAction {
+       
+       /**
+        * Creates the action delegate
+        */
+       public ExternalToolMenuDelegate() {
+               super(IExternalToolConstants.ID_EXTERNAL_TOOLS_LAUNCH_GROUP);
+       }
+
+}