summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBhupendra Bhusman Bhardwaj <bhupendrab@apache.org>2007-02-02 10:54:43 +0000
committerBhupendra Bhusman Bhardwaj <bhupendrab@apache.org>2007-02-02 10:54:43 +0000
commit2cef4b0f8d3411c7985805cda8c5dfc684d75e34 (patch)
tree96b52963d9b5c150232309c174e019ab498a892e
parent60eacbdd3c1a91d4b5873579d35a6b2089158209 (diff)
downloadqpid-python-2cef4b0f8d3411c7985805cda8c5dfc684d75e34.tar.gz
synced with the trunk - some part commented to allow users to copy-paste the host address
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/perftesting_persistent@502571 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java b/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
index 14c214ad5f..2586369515 100644
--- a/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
+++ b/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
@@ -165,6 +165,8 @@ public class AddServer/* extends Action*/ implements IWorkbenchWindowActionDeleg
textHost.setText("");
textHost.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
textHost.setFocus();
+ /*
+ //Commented so that it lets users copy paste the host name from somewhere else
textHost.addVerifyListener(new VerifyListener(){
public void verifyText(VerifyEvent event)
{
@@ -176,7 +178,7 @@ public class AddServer/* extends Action*/ implements IWorkbenchWindowActionDeleg
}
}
});
-
+ */
Label port = new Label(composite, SWT.NONE);
port.setText("Port");
@@ -185,6 +187,7 @@ public class AddServer/* extends Action*/ implements IWorkbenchWindowActionDeleg
final Text textPort = new Text(composite, SWT.BORDER);
textPort.setText("");
textPort.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
+ /* commented to allow copy paste on this window
textPort.addVerifyListener(new VerifyListener(){
public void verifyText(VerifyEvent event)
{
@@ -197,7 +200,7 @@ public class AddServer/* extends Action*/ implements IWorkbenchWindowActionDeleg
}
}
});
-
+ */
Label domain = new Label(composite, SWT.NONE);
domain.setText("Domain");