debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/RunModeMainTab.java
changeset 621 83547d5dea23
parent 273 c2533fd23253
child 728 a39d0ba41f81
child 857 d66843399035
equal deleted inserted replaced
620:3fc2337da03c 621:83547d5dea23
   117 		gd.horizontalSpan = colSpan;
   117 		gd.horizontalSpan = colSpan;
   118 		projComp.setLayoutData(gd);
   118 		projComp.setLayoutData(gd);
   119 
   119 
   120 		remoteLabel = new Label(projComp, SWT.NONE);
   120 		remoteLabel = new Label(projComp, SWT.NONE);
   121 		remoteLabel.setText(Messages.getString("RunModeMainTab.2")); //$NON-NLS-1$
   121 		remoteLabel.setText(Messages.getString("RunModeMainTab.2")); //$NON-NLS-1$
       
   122 		remoteLabel.setData(".uid", "RunModeMainTab.remoteLabel");  //$NON-NLS-1$ //$NON-NLS-2$
   122 		gd = new GridData();
   123 		gd = new GridData();
   123 		gd.horizontalSpan = 2;
   124 		gd.horizontalSpan = 2;
   124 		remoteLabel.setLayoutData(gd);
   125 		remoteLabel.setLayoutData(gd);
   125 		remoteLabel.setToolTipText(Messages.getString("RunModeMainTab.3")); //$NON-NLS-1$
   126 		remoteLabel.setToolTipText(Messages.getString("RunModeMainTab.3")); //$NON-NLS-1$
   126 
   127 
   127 		remoteText = new Text(projComp, SWT.SINGLE | SWT.BORDER);
   128 		remoteText = new Text(projComp, SWT.SINGLE | SWT.BORDER);
   128 		gd = new GridData(GridData.FILL_HORIZONTAL);
   129 		gd = new GridData(GridData.FILL_HORIZONTAL);
   129 		remoteText.setLayoutData(gd);
   130 		remoteText.setLayoutData(gd);
   130 		remoteText.setToolTipText(Messages.getString("RunModeMainTab.3")); //$NON-NLS-1$
   131 		remoteText.setToolTipText(Messages.getString("RunModeMainTab.3")); //$NON-NLS-1$
       
   132 		remoteText.setData(".uid", "RunModeMainTab.remoteText");  //$NON-NLS-1$ //$NON-NLS-2$
   131 		remoteText.addModifyListener(new ModifyListener() {
   133 		remoteText.addModifyListener(new ModifyListener() {
   132 
   134 
   133 			public void modifyText(ModifyEvent evt) {
   135 			public void modifyText(ModifyEvent evt) {
   134 				updateLaunchConfigurationDialog();
   136 				updateLaunchConfigurationDialog();
   135 			}
   137 			}