initial quantum version
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / preferences / CopyPreferences.java
1 package com.quantum.preferences;
2
3
4 import com.quantum.QuantumPlugin;
5
6 import org.eclipse.jface.preference.FieldEditorPreferencePage;
7 import org.eclipse.jface.preference.IPreferenceStore;
8 import org.eclipse.jface.preference.StringFieldEditor;
9 import org.eclipse.ui.IWorkbench;
10 import org.eclipse.ui.IWorkbenchPreferencePage;
11
12 public class CopyPreferences 
13         extends FieldEditorPreferencePage 
14         implements IWorkbenchPreferencePage {
15
16                 public CopyPreferences() {
17                         super(FieldEditorPreferencePage.GRID);
18                 
19                         // Set the preference store for the preference page.
20                         IPreferenceStore store =
21                                 QuantumPlugin.getDefault().getPreferenceStore();
22                         setPreferenceStore(store);
23                 }
24
25                 public void init(IWorkbench workbench) {
26                         this.workbench = workbench;
27                 }
28
29                 IWorkbench workbench;
30                 
31                 protected void createFieldEditors() {
32                         StringFieldEditor copyColumnSeparator = new StringFieldEditor("copyColumnSeparator", "&Normal Copy Separator:", getFieldEditorParent());
33                         this.
34                         addField(copyColumnSeparator);
35                 }
36
37 }