You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by bh...@apache.org on 2007/02/01 17:39:10 UTC

svn commit: r502275 - in /incubator/qpid/branches: new_persistence/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/ perftesting/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/

Author: bhupendrab
Date: Thu Feb  1 08:39:09 2007
New Revision: 502275

URL: http://svn.apache.org/viewvc?view=rev&rev=502275
Log:
synced with the trunk - some part commented to allow users to copy-paste the host address

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

Modified: incubator/qpid/branches/new_persistence/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/new_persistence/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java?view=diff&rev=502275&r1=502274&r2=502275
==============================================================================
--- incubator/qpid/branches/new_persistence/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java (original)
+++ incubator/qpid/branches/new_persistence/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java Thu Feb  1 08:39:09 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");

Modified: incubator/qpid/branches/perftesting/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/perftesting/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java?view=diff&rev=502275&r1=502274&r2=502275
==============================================================================
--- incubator/qpid/branches/perftesting/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java (original)
+++ incubator/qpid/branches/perftesting/qpid/java/management/eclipse-plugin/src/main/java/org/apache/qpid/management/ui/actions/AddServer.java Thu Feb  1 08:39:09 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");