blob: d32067441753c8f1e32a70c87318a51f0a63d02f [file] [log] [blame]
/**
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*/
package org.eclipse.egf.core.ui.internal.preferences;
import org.eclipse.egf.core.ui.EGFCoreUIPlugin;
import org.eclipse.egf.core.ui.l10n.CoreUIMessages;
import org.eclipse.jface.preference.FieldEditorPreferencePage;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;
/**
* Implement the EGF general preference page.
*
* @author Xavier Maysonnave
*/
public class EGFGeneralPreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage {
/**
* The default constructor
*/
public EGFGeneralPreferencePage() {
super();
setPreferenceStore(EGFCoreUIPlugin.getDefault().getPreferenceStore());
setTitle(CoreUIMessages.EGFGeneralPreferencePage_Title);
setDescription(CoreUIMessages.EGFGeneralPreferencePage_Description);
}
/**
* @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
*/
public void init(IWorkbench workbench_p) {
// Nothing to do.
}
@Override
protected void createFieldEditors() {
// Nothing to do
}
}