A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / SettingsInfoComposite.java
index 53539a0..f815d87 100644 (file)
@@ -6,7 +6,6 @@
  * 
  *************************************************************************/
 
-
 package net.sourceforge.phpeclipse.phpunit;
 
 import org.eclipse.swt.SWT;
@@ -16,13 +15,12 @@ import org.eclipse.swt.widgets.Button;
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.FileDialog;
 
-
-
 public class SettingsInfoComposite extends Composite {
 
        FileDialog dialog;
+
        Button button;
-       
+
        String testSuitePath;
 
        /**
@@ -30,14 +28,14 @@ public class SettingsInfoComposite extends Composite {
         * @param arg1
         */
        public SettingsInfoComposite(Composite parent, int style) {
-               
+
                super(parent, style);
-               
+
                dialog = new FileDialog(parent.getShell());
-               
+
                button = new Button(parent, SWT.NONE);
                button.setText("Browser for test...");
-               
+
                button.addMouseListener(new MouseListener() {
                        public void mouseDoubleClick(MouseEvent arg0) {
                                // TODO Auto-generated method stub
@@ -45,7 +43,7 @@ public class SettingsInfoComposite extends Composite {
                        }
 
                        public void mouseDown(MouseEvent arg0) {
-                       
+
                                testSuitePath = dialog.open();
                                System.out.println("file: " + testSuitePath);
 
@@ -56,31 +54,22 @@ public class SettingsInfoComposite extends Composite {
 
                        }
                });
-               
-               
-               
-               
-               
+
        }
-       
-       
+
        public String getTestSuite() {
-               
+
                return testSuitePath;
        }
 
-
        /**
         * 
         */
        protected void showFileDialog() {
-               
+
                testSuitePath = dialog.open();
                System.out.println("file: " + testSuitePath);
-               
-               
+
        }
-       
-       
 
 }