A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / actions / PHPStopXAMPPAction.java
index de26291..cd816ee 100644 (file)
@@ -19,54 +19,61 @@ import org.eclipse.ui.IWorkbenchWindow;
 import org.eclipse.ui.IWorkbenchWindowActionDelegate;
 
 public class PHPStopXAMPPAction implements IWorkbenchWindowActionDelegate {
-  protected IWorkbenchWindow activeWindow = null;
+       protected IWorkbenchWindow activeWindow = null;
 
-  public void run(IAction action) {
-    final IPreferenceStore store = ExternalToolsPlugin.getDefault().getPreferenceStore();
-    String executable = store.getString(ExternalToolsPlugin.XAMPP_STOP_PREF);
-    String workingDirectory = null;
-    if (executable != null && executable.length() > 0) {
-      int index = executable.lastIndexOf(File.separatorChar);
-      if (index > 0) {
-        workingDirectory = executable.substring(0, index);
-      }
-    }
-    execute("xampp_stop", executable, workingDirectory, true);
-  }
+       public void run(IAction action) {
+               final IPreferenceStore store = ExternalToolsPlugin.getDefault()
+                               .getPreferenceStore();
+               String executable = store
+                               .getString(ExternalToolsPlugin.XAMPP_STOP_PREF);
+               String workingDirectory = null;
+               if (executable != null && executable.length() > 0) {
+                       int index = executable.lastIndexOf(File.separatorChar);
+                       if (index > 0) {
+                               workingDirectory = executable.substring(0, index);
+                       }
+               }
+               execute("xampp_stop", executable, workingDirectory, true);
+       }
 
-  /**
-   * Executes an external progam and saves the LaunchConfiguration under external tools
-   * 
-   * @param command
-   *          external tools command name
-   * @param executable
-   *          executable path i.e.c:\apache\apache.exe
-   * @param background
-   *          run this configuration in background mode
-   */
-  public static void execute(String command, String executable, String workingDirectory, boolean background) {
-//    PHPConsole console = new PHPConsole();
-//    String consoleMessage;
-//    if (background) {
-//      consoleMessage = "run in background mode-" + command + ": " + executable;
-//    } else {
-//      consoleMessage = "run in foreground mode-" + command + ": " + executable;
-//    }
-//    console.println(consoleMessage);
+       /**
+        * Executes an external progam and saves the LaunchConfiguration under
+        * external tools
+        * 
+        * @param command
+        *            external tools command name
+        * @param executable
+        *            executable path i.e.c:\apache\apache.exe
+        * @param background
+        *            run this configuration in background mode
+        */
+       public static void execute(String command, String executable,
+                       String workingDirectory, boolean background) {
+               // PHPConsole console = new PHPConsole();
+               // String consoleMessage;
+               // if (background) {
+               // consoleMessage = "run in background mode-" + command + ": " +
+               // executable;
+               // } else {
+               // consoleMessage = "run in foreground mode-" + command + ": " +
+               // executable;
+               // }
+               // console.println(consoleMessage);
 
-    ExternalToolsUtil.execute(command, executable, workingDirectory, null, background);
-  }
+               ExternalToolsUtil.execute(command, executable, workingDirectory, null,
+                               background);
+       }
 
-  public void selectionChanged(IAction action, ISelection selection) {
+       public void selectionChanged(IAction action, ISelection selection) {
 
-  }
+       }
 
-  public void init(IWorkbenchWindow window) {
-    this.activeWindow = window;
-  }
+       public void init(IWorkbenchWindow window) {
+               this.activeWindow = window;
+       }
 
-  public void dispose() {
+       public void dispose() {
 
-  }
+       }
 
 }
\ No newline at end of file