--- CodeAssistAdvancedPreferencePage.java	Fri Aug  7 13:53:40 2009
+++ CodeAssistPreferencePage.java	Fri Aug  7 13:53:52 2009
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -8,6 +8,7 @@
  * Contributors:
  *     IBM Corporation - initial API and implementation
  *******************************************************************************/
+
 package org.eclipse.jdt.internal.ui.preferences;
 
 import org.eclipse.swt.widgets.Composite;
@@ -20,13 +21,22 @@
 
 import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
 
-public final class CodeAssistAdvancedPreferencePage extends PropertyAndPreferencePage  {
 
-	private CodeAssistAdvancedConfigurationBlock fConfigurationBlock;
+/**
+ * Content Assist preference page.
+ * <p>
+ * Note: Must be public since it is referenced from plugin.xml
+ * </p>
+ *
+ * @since 3.0
+ */
+public class CodeAssistPreferencePage extends PropertyAndPreferencePage {
 
+	private CodeAssistConfigurationBlock fConfigurationBlock;
+
 	public void createControl(Composite parent) {
 		IWorkbenchPreferenceContainer container= (IWorkbenchPreferenceContainer) getContainer();
-		fConfigurationBlock= new CodeAssistAdvancedConfigurationBlock(getNewStatusChangedListener(), container);
+		fConfigurationBlock= new CodeAssistConfigurationBlock(getNewStatusChangedListener(), container);
 
 		super.createControl(parent);
 		PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), IJavaHelpContextIds.JAVA_EDITOR_PREFERENCE_PAGE);
@@ -41,7 +51,7 @@
 	}
 
 	protected String getPreferencePageID() {
-		return "org.eclipse.jdt.ui.preferences.CodeAssistPreferenceAdvanced"; //$NON-NLS-1$
+		return "org.eclipse.jdt.ui.preferences.CodeAssistPreferencePage"; //$NON-NLS-1$
 	}
 
 	protected String getPropertyPageID() {
@@ -86,4 +96,5 @@
 			fConfigurationBlock.performApply();
 		}
 	}
+
 }
