org.eclipse.ui.internal.wizards.preferences |
|
Java Source File Name | Type | Comment |
PreferencesExportWizard.java | Class | Standard workbench wizard for exporting preferences from the workspace
to the local file system.
This class may be instantiated and used without further configuration;
this class is not intended to be subclassed.
Example:
IWizard wizard = new PreferencesExportWizard();
wizard.init(workbench, selection);
WizardDialog dialog = new WizardDialog(shell, wizard);
dialog.open();
During the call to open , the wizard dialog is presented to the
user. |
PreferencesImportWizard.java | Class | Standard workbench wizard for importing resources from the local file system
into the workspace.
This class may be instantiated and used without further configuration;
this class is not intended to be subclassed.
Example:
IWizard wizard = new PreferencesImportWizard();
wizard.init(workbench, selection);
WizardDialog dialog = new WizardDialog(shell, wizard);
dialog.open();
During the call to open , the wizard dialog is presented to the
user. |
PreferencesMessages.java | Class | NLS messages class for preferences messages. |
WizardPreferencesExportPage1.java | Class | |
WizardPreferencesImportPage1.java | Class | |
WizardPreferencesPage.java | Class | Base class for preference export/import pages. |