User:Lindenb/Notebook/UMR915/20110331
From OpenWetWare

Writing an eclipse plugin for KNIME
http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/preferences_prefs_contribute.htm The org.eclipse.ui.preferencePages extension point allows you to contribute pages
<extension
point = "org.eclipse.ui.preferencePages">
<page id="org.eclipse.ui.examples.readmetool.Page1"
class="org.eclipse.ui.examples.readmetool.ReadmePreferencePage"
name="%PreferencePage.name">
</page>
</extension>
implementation for these dialogs follows a common pattern. The contents of a page or dialog is defined by implementing a createContents method that creates the SWT controls representing the page content. http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/preferences_prefs_contribute.htm
protected Control createContents(Composite parent) protected IPreferenceStore doGetPreferenceStore() protected void initializeDefaultPreferences(IPreferenceStore store)
http://www.eclipse.org/articles/Article-Preferences/preferences.htm