debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/LaunchCategorySelectionPage.java
branchRCL_2_4
changeset 566 960058f9da89
parent 212 0e84cf0560e1
child 1384 10b788ab16fe
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/LaunchCategorySelectionPage.java	Wed Nov 04 15:06:41 2009 -0600
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/LaunchCategorySelectionPage.java	Thu Nov 05 13:22:54 2009 -0600
@@ -126,6 +126,7 @@
 	public void createDescriptionIn(Composite composite) {
 		descriptionBrowser.createControl(composite);
 		Control c = descriptionBrowser.getControl();
+		c.setData(".uid", "LaunchCatagorySelection.descriptionBrowser");
 		GridData gd = new GridData(GridData.FILL_BOTH);
 		gd.widthHint = 200;
 		c.setLayoutData(gd);
@@ -150,6 +151,7 @@
 		label.setText(Messages.getString("LaunchCategorySelectionPage.categoryLabel")); //$NON-NLS-1$
 		GridData gd = new GridData();
 		label.setLayoutData(gd);
+		label.setData(".uid", "LaunchCategorySelectionPage.label");
 		
 		SashForm sashForm = new SashForm(container, SWT.VERTICAL);
 		gd = new GridData(GridData.FILL_BOTH);
@@ -181,6 +183,10 @@
 		PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), LaunchWizardHelpIds.CATEGORY_SELECTION_PAGE);
 	}
 	
+	public TableViewer getViewer() {
+		return categorySelectionTableViewer;
+	}
+	
 	public void selectionChanged(SelectionChangedEvent event) {
 		String description = null;
 		IStructuredSelection selection = (IStructuredSelection) event.getSelection();