Author: bhupendrab
Date: Thu Feb  1 08:34:21 2007
New Revision: 502269

URL: http://svn.apache.org/viewvc?view=rev&rev=502269
Log:
some part commented, so that it lets users copy paste the host details on the 
new connection window

Modified:
    
incubator/qpid/trunk/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java

Modified: 
incubator/qpid/trunk/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
URL: 
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java?view=diff&rev=502269&r1=502268&r2=502269
==============================================================================
--- 
incubator/qpid/trunk/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
 (original)
+++ 
incubator/qpid/trunk/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
 Thu Feb  1 08:34:21 2007
@@ -165,6 +165,8 @@
         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 @@
                     }
                 }
             });
-        
+        */
         
         Label port = new Label(composite, SWT.NONE);
         port.setText("Port");
@@ -185,6 +187,7 @@
         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 @@
                     }
                 }
             });
-        
+        */
         
         Label domain = new Label(composite, SWT.NONE);
         domain.setText("Domain");


Reply via email to