Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwjongman2010-06-10 20:54:54 +0000
committerwjongman2010-06-10 20:54:54 +0000
commit40fa4b9e41cefe1d8540a396b12ebab507e1f601 (patch)
tree36fe9459bf3c667fa934e094578867589effacdf
parentfb1f8cd036f5837a626f24567e5c98d9537a39e7 (diff)
downloadorg.eclipse.ecf-40fa4b9e41cefe1d8540a396b12ebab507e1f601.tar.gz
org.eclipse.ecf-40fa4b9e41cefe1d8540a396b12ebab507e1f601.tar.xz
org.eclipse.ecf-40fa4b9e41cefe1d8540a396b12ebab507e1f601.zip
*** empty log message ***
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.quotes.consumer/src/org/eclipse/ecf/examples/remoteservices/quotes/consumer/ConsumerUI.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.quotes.consumer/src/org/eclipse/ecf/examples/remoteservices/quotes/consumer/ConsumerUI.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.quotes.consumer/src/org/eclipse/ecf/examples/remoteservices/quotes/consumer/ConsumerUI.java
index 99da50fdb..4143ce95f 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.quotes.consumer/src/org/eclipse/ecf/examples/remoteservices/quotes/consumer/ConsumerUI.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.quotes.consumer/src/org/eclipse/ecf/examples/remoteservices/quotes/consumer/ConsumerUI.java
@@ -25,7 +25,7 @@ import org.eclipse.swt.widgets.TabItem;
public class ConsumerUI extends Shell {
private Text servers;
- private Label label;
+ private Label lblBehindAFirewall;
private StyledText styledText;
private OSGilloscope gilloscope;
private Dispatcher dispatcher;
@@ -102,14 +102,15 @@ public class ConsumerUI extends Shell {
composite_1.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
composite_1.setLayout(new GridLayout(1, false));
- label = (new Label(composite_1, SWT.NONE));
+ lblBehindAFirewall = (new Label(composite_1, SWT.NONE));
getLabel().setAlignment(SWT.CENTER);
getLabel().setFont(new Font(null, "Segoe UI", 15, SWT.BOLD));
getLabel().setLayoutData(
new GridData(SWT.FILL, SWT.TOP, true, false, 1, 1));
- getLabel().setText("New Label");
+ getLabel().setText("Behind a Firewall?");
styledText = (new StyledText(composite_1, SWT.BORDER | SWT.WRAP));
+ styledText.setText("Ports 2181 needs to be opened for the Zookeeper Discovery to work and port 3282 is needed by the ECF distribution provider. You can change the ports if you run this in your own environment.");
styledText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
styledText.setEditable(false);
@@ -185,7 +186,7 @@ public class ConsumerUI extends Shell {
}
public Label getLabel() {
- return label;
+ return lblBehindAFirewall;
}
public StyledText getStyledText() {

Back to the top