A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.webbrowser / src / net / sourceforge / phpeclipse / webbrowser / internal / InternalBrowserDialog.java
index e0261e8..75f74e3 100644 (file)
@@ -4,7 +4,7 @@
  * are 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
- *
+ �*
  * Contributors:
  *    IBM - Initial API and implementation
  **********************************************************************/
@@ -21,19 +21,24 @@ import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.Control;
 import org.eclipse.swt.widgets.Shell;
 import org.eclipse.ui.PlatformUI;
+
 /**
- *
+ * 
  */
 public class InternalBrowserDialog extends Dialog {
        protected IInternalWebBrowserWorkingCopy browser;
+
        protected boolean isEdit;
+
        protected Button newPageCheckbox;
+
        protected Button clearURLHistoryCheckbox;
 
        /**
         * @param parentShell
         */
-       public InternalBrowserDialog(Shell parentShell, IInternalWebBrowserWorkingCopy browser) {
+       public InternalBrowserDialog(Shell parentShell,
+                       IInternalWebBrowserWorkingCopy browser) {
                super(parentShell);
                this.browser = browser;
                isEdit = true;
@@ -43,15 +48,18 @@ public class InternalBrowserDialog extends Dialog {
                super.configureShell(shell);
 
                if (isEdit)
-                       shell.setText(WebBrowserUIPlugin.getResource("%editInternalBrowser"));
+                       shell.setText(WebBrowserUIPlugin
+                                       .getResource("%editInternalBrowser"));
        }
 
-       /* (non-Javadoc)
+       /*
+        * (non-Javadoc)
+        * 
         * @see org.eclipse.jface.dialogs.Dialog#createDialogArea(org.eclipse.swt.widgets.Composite)
         */
        protected Control createDialogArea(Composite parent) {
                Composite composite = (Composite) super.createDialogArea(parent);
-               ((GridLayout)composite.getLayout()).numColumns = 1;
+               ((GridLayout) composite.getLayout()).numColumns = 1;
 
                Composite comp = new Composite(composite, SWT.NONE);
                GridLayout layout = new GridLayout(1, true);
@@ -59,10 +67,13 @@ public class InternalBrowserDialog extends Dialog {
                layout.marginWidth = 10;
                comp.setLayout(layout);
                comp.setLayoutData(new GridData(GridData.FILL_BOTH));
-               PlatformUI.getWorkbench().getHelpSystem().setHelp(composite, ContextIds.PREF_BROWSER_INTERNAL);
+               PlatformUI.getWorkbench().getHelpSystem().setHelp(composite,
+                               ContextIds.PREF_BROWSER_INTERNAL);
 
-               newPageCheckbox = SWTUtil.createCheckbox(comp, WebBrowserUIPlugin.getResource("%prefBrowserNewPage"), false);
-               clearURLHistoryCheckbox = SWTUtil.createCheckbox(comp, WebBrowserUIPlugin.getResource("%clearURLHistory"), true);
+               newPageCheckbox = SWTUtil.createCheckbox(comp, WebBrowserUIPlugin
+                               .getResource("%prefBrowserNewPage"), false);
+               clearURLHistoryCheckbox = SWTUtil.createCheckbox(comp,
+                               WebBrowserUIPlugin.getResource("%clearURLHistory"), true);
 
                newPageCheckbox.setSelection(browser.getUseNewPage());
                clearURLHistoryCheckbox.setSelection(browser.getClearHistoryOnExit());
@@ -70,7 +81,9 @@ public class InternalBrowserDialog extends Dialog {
                return composite;
        }
 
-       /* (non-Javadoc)
+       /*
+        * (non-Javadoc)
+        * 
         * @see org.eclipse.jface.dialogs.Dialog#okPressed()
         */
        protected void okPressed() {