# HG changeset patch # User rsaid # Date 1259944558 21600 # Node ID ea4660fdf0e423619e27308b2cec7b0564072ede # Parent 5a3109823be8f7f7603c59d27ccf8785125080dc Added UIDs to the controls diff -r 5a3109823be8 -r ea4660fdf0e4 debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java --- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java Fri Dec 04 10:17:26 2009 -0600 +++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java Fri Dec 04 10:35:58 2009 -0600 @@ -95,6 +95,7 @@ targetingRulesCombo.add(Messages.getString("ExecutablesTab.4")); //$NON-NLS-1$ } targetingRulesCombo.setText(Messages.getString("ExecutablesTab.5")); //$NON-NLS-1$ + targetingRulesCombo.setData(".uid", "ExecutablesTab.targetingRulesCombo"); //$NON-NLS-1$ //$NON-NLS-2$ final GridData gd_targetingRulesCombo = new GridData(SWT.FILL, SWT.CENTER, true, false, 2, 1); targetingRulesCombo.setLayoutData(gd_targetingRulesCombo); targetingRulesCombo.addListener(SWT.Selection, new Listener() { @@ -156,6 +157,7 @@ addButton = new Button(buttonComp, SWT.PUSH); addButton.setText(Messages.getString("ExecutablesTab.6")); //$NON-NLS-1$ + addButton.setData(".uid", "ExecutablesTab.addButton"); //$NON-NLS-1$ //$NON-NLS-2$ addButton.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { FileDialog dialog = new FileDialog(getShell(), SWT.NONE); @@ -177,6 +179,7 @@ selectAllButton = new Button(buttonComp, SWT.PUSH); selectAllButton.setText(Messages.getString("ExecutablesTab.9")); //$NON-NLS-1$ + selectAllButton.setData(".uid", "ExecutablesTab.selectAllButton"); //$NON-NLS-1$ //$NON-NLS-2$ selectAllButton.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { executablesBlock.setAllChecked(true); @@ -185,6 +188,7 @@ unselectAllButton = new Button(buttonComp, SWT.PUSH); unselectAllButton.setText(Messages.getString("ExecutablesTab.10")); //$NON-NLS-1$ + unselectAllButton.setData(".uid", "ExecutablesTab.unselectAllButton"); //$NON-NLS-1$ //$NON-NLS-2$ unselectAllButton.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { executablesBlock.setAllChecked(false);