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 / CompilerPreferencePage.java
index 0356e01..bcc2c91 100644 (file)
@@ -27,18 +27,20 @@ import org.eclipse.ui.PlatformUI;
 /*
  * The page to configure the compiler options.
  */
-public class CompilerPreferencePage extends PreferencePage implements IWorkbenchPreferencePage, IStatusChangeListener {
+public class CompilerPreferencePage extends PreferencePage implements
+               IWorkbenchPreferencePage, IStatusChangeListener {
 
        private CompilerConfigurationBlock fConfigurationBlock;
 
        public CompilerPreferencePage() {
                setPreferenceStore(PHPeclipsePlugin.getDefault().getPreferenceStore());
-               setDescription(PreferencesMessages.getString("CompilerPreferencePage.description")); //$NON-NLS-1$
+               setDescription(PreferencesMessages
+                               .getString("CompilerPreferencePage.description")); //$NON-NLS-1$
 
                // only used when page is shown programatically
-               setTitle(PreferencesMessages.getString("CompilerPreferencePage.title"));                 //$NON-NLS-1$
+               setTitle(PreferencesMessages.getString("CompilerPreferencePage.title")); //$NON-NLS-1$
 
-               fConfigurationBlock= new CompilerConfigurationBlock(this, null);
+               fConfigurationBlock = new CompilerConfigurationBlock(this, null);
        }
 
        /*
@@ -52,15 +54,15 @@ public class CompilerPreferencePage extends PreferencePage implements IWorkbench
         */
        public void createControl(Composite parent) {
                super.createControl(parent);
-               PlatformUI.getWorkbench().getHelpSystem().
-               setHelp(getControl(), IJavaHelpContextIds.COMPILER_PREFERENCE_PAGE);
+               PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(),
+                               IJavaHelpContextIds.COMPILER_PREFERENCE_PAGE);
        }
 
        /*
         * @see PreferencePage#createContents(Composite)
         */
        protected Control createContents(Composite parent) {
-               Control result= fConfigurationBlock.createContents(parent);
+               Control result = fConfigurationBlock.createContents(parent);
                Dialog.applyDialogFont(result);
                return result;
        }
@@ -83,7 +85,9 @@ public class CompilerPreferencePage extends PreferencePage implements IWorkbench
                super.performDefaults();
        }
 
-       /* (non-Javadoc)
+       /*
+        * (non-Javadoc)
+        * 
         * @see net.sourceforge.phpdt.internal.ui.wizards.IStatusChangeListener#statusChanged(org.eclipse.core.runtime.IStatus)
         */
        public void statusChanged(IStatus status) {