--- /dev/null
+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);
+ }
+
+}