1 /**********************************************************************
2 Copyright (c) 2000, 2002 IBM Corp. and others.
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Common Public License v1.0
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/cpl-v10.html
9 IBM Corporation - Initial implementation
11 **********************************************************************/
12 package net.sourceforge.phpdt.externaltools.actions;
14 import net.sourceforge.phpeclipse.externaltools.ExternalToolsPlugin;
16 import org.eclipse.jface.action.IAction;
17 import org.eclipse.jface.preference.IPreferenceStore;
19 public class PHPStartMySQLAction extends PHPStartApacheAction {
20 public void run(IAction action) {
21 final IPreferenceStore store = ExternalToolsPlugin.getDefault().getPreferenceStore();
22 // execute(store.getString(PHPeclipsePlugin.MYSQL_PREF), "Start MySQL: ");
25 store.getString(ExternalToolsPlugin.MYSQL_RUN_PREF),
26 store.getString(ExternalToolsPlugin.MYSQL_PREF),
27 store.getBoolean(ExternalToolsPlugin.MYSQL_START_BACKGROUND));