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 / InternetPreferencePage.java
index cc403d8..e88ffbd 100644 (file)
@@ -1,27 +1,32 @@
 /**
  * Copyright (c) 2003 IBM Corporation and others.
- * All rights reserved.   This program and the accompanying materials
+ * All rights reserved. � This program and the accompanying materials
  * 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
  */
 package net.sourceforge.phpeclipse.webbrowser.internal;
 
-import org.eclipse.swt.*;
-import org.eclipse.swt.layout.*;
-import org.eclipse.swt.widgets.*;
 import org.eclipse.jface.dialogs.Dialog;
 import org.eclipse.jface.preference.PreferencePage;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.Label;
 import org.eclipse.ui.IWorkbench;
 import org.eclipse.ui.IWorkbenchPreferencePage;
-import org.eclipse.ui.help.WorkbenchHelp;
+import org.eclipse.ui.PlatformUI;
+
 /**
  * A preference page that holds internet preferences.
  */
-public class InternetPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
+public class InternetPreferencePage extends PreferencePage implements
+               IWorkbenchPreferencePage {
        /**
         * InternetPreferencePage constructor comment.
         */
@@ -32,13 +37,14 @@ public class InternetPreferencePage extends PreferencePage implements IWorkbench
 
        /**
         * Create the preference options.
-        *
-        * @param parent org.eclipse.swt.widgets.Composite
+        * 
+        * @param parent
+        *            org.eclipse.swt.widgets.Composite
         * @return org.eclipse.swt.widgets.Control
         */
        protected Control createContents(Composite parent) {
                initializeDialogUnits(parent);
-               
+
                Composite composite = new Composite(parent, SWT.NONE);
                GridLayout layout = new GridLayout();
                layout.numColumns = 1;
@@ -47,24 +53,29 @@ public class InternetPreferencePage extends PreferencePage implements IWorkbench
                layout.marginWidth = 0;
                layout.marginHeight = 0;
                composite.setLayout(layout);
-               GridData data = new GridData(GridData.FILL_HORIZONTAL | GridData.VERTICAL_ALIGN_FILL);
+               GridData data = new GridData(GridData.FILL_HORIZONTAL
+                               | GridData.VERTICAL_ALIGN_FILL);
                composite.setLayoutData(data);
-               WorkbenchHelp.setHelp(composite, ContextIds.PREF_BROWSER);
-               
+               PlatformUI.getWorkbench().getHelpSystem().setHelp(composite,
+                               ContextIds.PREF_BROWSER);
+
                Label label = new Label(composite, SWT.WRAP);
-               label.setText(WebBrowserUIPlugin.getResource("%preferenceInternetDescription"));
+               label.setText(WebBrowserUIPlugin
+                               .getResource("%preferenceInternetDescription"));
                data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
                label.setLayoutData(data);
-               
+
                Dialog.applyDialogFont(composite);
-               
+
                return composite;
        }
 
        /**
         * Initializes this preference page using the passed desktop.
-        *
-        * @param desktop the current desktop
+        * 
+        * @param desktop
+        *            the current desktop
         */
-       public void init(IWorkbench workbench) { }
+       public void init(IWorkbench workbench) {
+       }
 }
\ No newline at end of file