Author: rob.stryker(a)jboss.com
Date: 2010-12-17 00:36:35 -0500 (Fri, 17 Dec 2010)
New Revision: 27572
Added:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties
Removed:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/Messages.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
Log:
"JBIDE-7889 deltacloud integration stuff" messages were not resolving
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/Messages.java
===================================================================
---
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/Messages.java 2010-12-17
02:01:47 UTC (rev 27571)
+++
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/Messages.java 2010-12-17
05:36:35 UTC (rev 27572)
@@ -3,7 +3,7 @@
import org.eclipse.osgi.util.NLS;
public class Messages {
- private static final String BUNDLE_NAME = DeltaCloudIntegrationPlugin.PLUGIN_ID +
".Messages"; //$NON-NLS-1$
+ private static final String BUNDLE_NAME = DeltaCloudIntegrationPlugin.PLUGIN_ID +
".messages"; //$NON-NLS-1$
public static String ERROR;
public static String COULD_NOT_LAUNCH_RSE_EXPLORER;
Deleted:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties
===================================================================
---
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties 2010-12-17
02:01:47 UTC (rev 27571)
+++
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties 2010-12-17
05:36:35 UTC (rev 27572)
@@ -1,4 +0,0 @@
-RSE_CONNECTING_MESSAGE=Connecting instance as: {0}
-COULD_NOT_LAUNCH_RSE_EXPLORER=Could not open remote system explorer
-COULD_NOT_LAUNCH_RSE_EXPLORER2=Could not launch remote system explorer for instance
"{0}"
-ERROR=Error
\ No newline at end of file
Copied:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties
(from rev 27456,
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties)
===================================================================
---
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties
(rev 0)
+++
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/messages.properties 2010-12-17
05:36:35 UTC (rev 27572)
@@ -0,0 +1,4 @@
+RSE_CONNECTING_MESSAGE=Connecting instance as: {0}
+COULD_NOT_LAUNCH_RSE_EXPLORER=Could not open remote system explorer
+COULD_NOT_LAUNCH_RSE_EXPLORER2=Could not launch remote system explorer for instance
"{0}"
+ERROR=Error
\ No newline at end of file
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java
===================================================================
---
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java 2010-12-17
02:01:47 UTC (rev 27571)
+++
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java 2010-12-17
05:36:35 UTC (rev 27572)
@@ -69,7 +69,6 @@
Assert.isLegal(instance != null, "Cannot get hostname: instance is not
defined");
String hostName = instance.getHostName();
- System.out.println(instance.getHostName());
Assert.isTrue(hostName != null && hostName.length() > 0,
MessageFormat.format("Cannot get host name: not defined for instance {0}",
instance.getName()));
return hostName;
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
===================================================================
---
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java 2010-12-17
02:01:47 UTC (rev 27571)
+++
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java 2010-12-17
05:36:35 UTC (rev 27572)
@@ -49,9 +49,9 @@
private final static String CREATE_SERVER_PREF_KEY =
"org.jboss.tools.deltacloud.integration.wizard.RSEandASWizard.CREATE_SERVER_PREF_KEY";
public RSEandASWizardPage() {
- super("Blah Wizard Page");
- setTitle("Blah Title");
- setDescription("Blah Desc");
+ super("Create RSE Connection and Server");
+ setTitle("Create RSE Connection and Server");
+ setDescription("Here you can choose to create a matching RSE connection and a
Server adapter");
}
public void createControl(Composite parent) {
@@ -98,6 +98,7 @@
}
public AbstractInstanceJob getPerformFinishJob(final DeltaCloudInstance instance) {
+ System.out.println(instance.getHostName());
IEclipsePreferences prefs = new
InstanceScope().getNode(DeltaCloudIntegrationPlugin.PLUGIN_ID);
prefs.putBoolean(CREATE_RSE_PREF_KEY, createRSE.getSelection());
prefs.putBoolean(CREATE_SERVER_PREF_KEY, createServer.getSelection());
Show replies by date