A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / preferences / SpellingPreferencePage.java
index 4a25a0d..fdb8eb8 100644 (file)
@@ -27,13 +27,15 @@ import org.eclipse.ui.PlatformUI;
 
 /**
  * Preference page for spell checking preferences.
- *
+ * 
  * @since 3.0
  */
-public class SpellingPreferencePage extends PreferencePage implements IWorkbenchPreferencePage, IStatusChangeListener {
+public class SpellingPreferencePage extends PreferencePage implements
+               IWorkbenchPreferencePage, IStatusChangeListener {
 
        /** The spelling configuration block */
-       private final SpellingConfigurationBlock fBlock= new SpellingConfigurationBlock(this, null);
+       private final SpellingConfigurationBlock fBlock = new SpellingConfigurationBlock(
+                       this, null);
 
        /**
         * Creates a new spelling preference page.
@@ -41,7 +43,8 @@ public class SpellingPreferencePage extends PreferencePage implements IWorkbench
        public SpellingPreferencePage() {
 
                setPreferenceStore(PHPeclipsePlugin.getDefault().getPreferenceStore());
-               setDescription(PreferencesMessages.getString("SpellingPreferencePage.description")); //$NON-NLS-1$
+               setDescription(PreferencesMessages
+                               .getString("SpellingPreferencePage.description")); //$NON-NLS-1$
                setTitle(PreferencesMessages.getString("SpellingPreferencePage.title")); //$NON-NLS-1$
        }
 
@@ -50,7 +53,7 @@ public class SpellingPreferencePage extends PreferencePage implements IWorkbench
         */
        protected Control createContents(final Composite parent) {
 
-               final Control control= fBlock.createContents(parent);
+               final Control control = fBlock.createContents(parent);
                Dialog.applyDialogFont(control);
 
                return control;
@@ -61,7 +64,8 @@ public class SpellingPreferencePage extends PreferencePage implements IWorkbench
         */
        public void createControl(final Composite parent) {
                super.createControl(parent);
-               PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), IJavaHelpContextIds.JAVA_EDITOR_PREFERENCE_PAGE);
+               PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(),
+                               IJavaHelpContextIds.JAVA_EDITOR_PREFERENCE_PAGE);
        }
 
        /*