public PreferencesCommand() {
super(ID);
}
protected void doExecuteCommand() {
SettingsDialog dialog = new SettingsDialog(getParentWindowControl(), "Preferences");
dialog.pack();
JideSwingUtilities.globalCenterWindow(dialog);
dialog.setVisible(true);
}