Author: adietish
Date: 2011-02-02 06:33:31 -0500 (Wed, 02 Feb 2011)
New Revision: 28915
Modified:
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
Log:
[JBIDE-8299] corrected creation style to fix mac os bug
Modified:
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog
===================================================================
---
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog 2011-02-02
11:33:12 UTC (rev 28914)
+++
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog 2011-02-02
11:33:31 UTC (rev 28915)
@@ -1,3 +1,21 @@
+2011-02-02 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
+
+ * src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
(createControl):
+ [JBIDE-8299] corrected creation style to fix mac os bug
+
+2011-02-01 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
+
+ * src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
+ (CREATE_RSE_PREF_KEY):
+ (CREATE_SERVER_PREF_KEY):
+ (createControl):
+ [JBIDE-8291] Server adapter is not created by default any more
+ * src/org/jboss/tools/deltacloud/integration/wizard/CreateServerFromRSEJob.java
+ (createServerSetDetailsNow):
+ (createServerCheckRemoteDetails):
+ * src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java
(createConnectionName):
+ [JBIDE-8292] Server Adapter and RSE now use instance alias as name
+
2010-12-27 adietisheim <adietisheim@adietisheim-thinkpad>
* META-INF/MANIFEST.MF:
Modified:
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
===================================================================
---
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java 2011-02-02
11:33:12 UTC (rev 28914)
+++
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java 2011-02-02
11:33:31 UTC (rev 28915)
@@ -113,7 +113,7 @@
public void widgetDefaultSelected(SelectionEvent e) {
}
});
- autoLocalRuntimeCombo = new Combo(g, SWT.NONE);
+ autoLocalRuntimeCombo = new Combo(g, SWT.READ_ONLY);
autoLocalRuntimeCombo.setLayoutData(UIUtils.createFormData(remoteDetailsLoc, 5, null,
0, autoLocalRuntimeLabel, 5, autoAddLocalRuntimeButton, -5));
@@ -149,7 +149,7 @@
public void widgetDefaultSelected(SelectionEvent e) {
}
});
- localRuntimeCombo = new Combo(g, SWT.NONE);
+ localRuntimeCombo = new Combo(g, SWT.READ_ONLY);
localRuntimeCombo.setLayoutData(UIUtils.createFormData(serverConfigText, 5, null, 0,
serverHome, 5, addLocalRuntimeButton, -5));
Show replies by date