Author: akazakov
Date: 2011-03-29 21:15:58 -0400 (Tue, 29 Mar 2011)
New Revision: 30138
Modified:
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
Log:
https://issues.jboss.org/browse/JBIDE-8626
Modified:
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
===================================================================
---
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java 2011-03-30
01:15:09 UTC (rev 30137)
+++
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java 2011-03-30
01:15:58 UTC (rev 30138)
@@ -1,143 +1,120 @@
-/*******************************************************************************
- * Copyright (c) 2007 Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-
-package org.jboss.tools.seam.ui.preferences;
-
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-import java.util.Map;
-
-import org.eclipse.jface.preference.PreferencePage;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.layout.GridLayout;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-import org.eclipse.ui.IWorkbench;
-import org.eclipse.ui.IWorkbenchPreferencePage;
-import org.jboss.tools.seam.core.project.facet.SeamRuntime;
-import org.jboss.tools.seam.core.project.facet.SeamRuntimeManager;
-import org.jboss.tools.seam.ui.widget.editor.SeamRuntimeListFieldEditor;
-
-/**
- * Seam preference page that allows editing list of available Seam Runtimes:
- * <ul>
- * <li>define new </li>
- * <li>change exists</li>
- * <li>remove</li>
- * <li>set default ones</li>
- * </ul>
- *
- * @author eskimo
- */
-public class SeamPreferencePage extends PreferencePage implements
IWorkbenchPreferencePage {
-
- public SeamPreferencePage() {
- super();
- noDefaultAndApplyButton();
- }
-
- /**
- * Seam Preferences page ID
- */
- public static final String SEAM_PREFERENCES_ID =
"org.jboss.tools.common.model.ui.seam";
-
- private static final int COLUMNS = 3;
-
- SeamRuntimeListFieldEditor seamRuntimes = new SeamRuntimeListFieldEditor(
- "rtlist", SeamPreferencesMessages.SEAM_PREFERENCE_PAGE_SEAM_RUNTIMES, new
ArrayList<SeamRuntime>(Arrays.asList(SeamRuntimeManager.getInstance().getRuntimes())));
//$NON-NLS-1$
-
- /**
- * Create contents of Seam preferences page. SeamRuntime list editor is
- * created
- *
- * @return Control
- */
- @Override
- protected Control createContents(Composite parent) {
- Composite root = new Composite(parent, SWT.NONE);
- GridLayout gl = new GridLayout(COLUMNS, false);
- root.setLayout(gl);
- seamRuntimes.doFillIntoGrid(root);
-
- return root;
- }
-
- /**
- * Inherited from IWorkbenchPreferencePage
- *
- * @param workbench
- * {@link IWorkbench}
- *
- */
- public void init(IWorkbench workbench) {
- }
-
- /**
- * Save SeamRuntime list
- */
- @Override
- protected void performApply() {
- for (SeamRuntime rt : seamRuntimes.getAddedSeamRuntimes()) {
- SeamRuntimeManager.getInstance().addRuntime(rt);
- }
- seamRuntimes.getAddedSeamRuntimes().clear();
- for (SeamRuntime rt : seamRuntimes.getRemoved()) {
- SeamRuntimeManager.getInstance().removeRuntime(rt);
- }
- seamRuntimes.getRemoved().clear();
- List<SeamRuntime> defaultRuntimes = seamRuntimes.getDefaultSeamRuntimes();
- // reset all default runtimes
- for (SeamRuntime seamRuntime : SeamRuntimeManager.getInstance().getRuntimes()) {
- seamRuntime.setDefault(false);
- }
- // set deafult runtimes
- for (SeamRuntime seamRuntime : defaultRuntimes) {
- seamRuntime.setDefault(true);
- }
- seamRuntimes.getDefaultSeamRuntimes().clear();
- Map<SeamRuntime, SeamRuntime> changed = seamRuntimes.getChangedSeamRuntimes();
- for (SeamRuntime c : changed.keySet()) {
- SeamRuntime o = changed.get(c);
- o.setHomeDir(c.getHomeDir());
- o.setVersion(c.getVersion());
- String oldName = o.getName();
- String newName = c.getName();
- if (!oldName.equals(newName)) {
- SeamRuntimeManager.getInstance().changeRuntimeName(oldName, newName);
- }
- }
- seamRuntimes.getChangedSeamRuntimes().clear();
-
- SeamRuntimeManager.getInstance().save();
- }
-
- /**
- * Restore original preferences values
- */
- @Override
- protected void performDefaults() {
- setValid(true);
- setMessage(null);
- performApply();
- }
-
- /**
- * See {@link PreferencePage} for details
- *
- * @return Boolean
- */
- @Override
- public boolean performOk() {
- performApply();
- return super.performOk();
- }
+/*******************************************************************************
+ * Copyright (c) 2007 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is 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:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.jboss.tools.seam.ui.preferences;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+import org.eclipse.jface.preference.PreferencePage;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.ui.IWorkbench;
+import org.eclipse.ui.IWorkbenchPreferencePage;
+import org.jboss.tools.seam.core.project.facet.SeamRuntime;
+import org.jboss.tools.seam.core.project.facet.SeamRuntimeManager;
+import org.jboss.tools.seam.ui.widget.editor.SeamRuntimeListFieldEditor;
+
+/**
+ * Seam preference page that allows editing list of available Seam Runtimes:
+ * <ul>
+ * <li>define new </li>
+ * <li>change exists</li>
+ * <li>remove</li>
+ * <li>set default ones</li>
+ * </ul>
+ *
+ * @author eskimo
+ */
+public class SeamPreferencePage extends PreferencePage implements
IWorkbenchPreferencePage {
+
+ public SeamPreferencePage() {
+ super();
+ noDefaultAndApplyButton();
+ }
+
+ /**
+ * Seam Preferences page ID
+ */
+ public static final String SEAM_PREFERENCES_ID =
"org.jboss.tools.common.model.ui.seam";
+
+ private static final int COLUMNS = 3;
+
+ SeamRuntimeListFieldEditor seamRuntimes = new SeamRuntimeListFieldEditor(
+ "rtlist", SeamPreferencesMessages.SEAM_PREFERENCE_PAGE_SEAM_RUNTIMES, new
ArrayList<SeamRuntime>(Arrays.asList(SeamRuntimeManager.getInstance().getRuntimes())));
//$NON-NLS-1$
+
+ /**
+ * Create contents of Seam preferences page. SeamRuntime list editor is
+ * created
+ *
+ * @return Control
+ */
+ @Override
+ protected Control createContents(Composite parent) {
+ Composite root = new Composite(parent, SWT.NONE);
+ GridLayout gl = new GridLayout(COLUMNS, false);
+ root.setLayout(gl);
+ seamRuntimes.doFillIntoGrid(root);
+ return root;
+ }
+
+ /**
+ * Inherited from IWorkbenchPreferencePage
+ *
+ * @param workbench
+ * {@link IWorkbench}
+ *
+ */
+ public void init(IWorkbench workbench) {
+ }
+
+ /**
+ * Save SeamRuntime list
+ */
+ @Override
+ protected void performApply() {
+ List<SeamRuntime> defaultRuntimes = seamRuntimes.getDefaultSeamRuntimes();
+ // reset all default runtimes
+ for (SeamRuntime seamRuntime : SeamRuntimeManager.getInstance().getRuntimes()) {
+ seamRuntime.setDefault(false);
+ }
+ // set deafult runtimes
+ for (SeamRuntime seamRuntime : defaultRuntimes) {
+ seamRuntime.setDefault(true);
+ }
+ seamRuntimes.getDefaultSeamRuntimes().clear();
+ SeamRuntimeManager.getInstance().save();
+ }
+
+ /**
+ * Restore original preferences values
+ */
+ @Override
+ protected void performDefaults() {
+ setValid(true);
+ setMessage(null);
+ performApply();
+ }
+
+ /**
+ * See {@link PreferencePage} for details
+ *
+ * @return Boolean
+ */
+ @Override
+ public boolean performOk() {
+ performApply();
+ return super.performOk();
+ }
}
\ No newline at end of file