### Eclipse Workspace Patch 1.0 #P org.eclipse.pde.ui Index: src/org/eclipse/pde/internal/ui/wizards/provisioner/ProvisionerListSelectionPage.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/wizards/provisioner/ProvisionerListSelectionPage.java,v retrieving revision 1.7 diff -u -r1.7 ProvisionerListSelectionPage.java --- src/org/eclipse/pde/internal/ui/wizards/provisioner/ProvisionerListSelectionPage.java 16 Jan 2008 17:08:37 -0000 1.7 +++ src/org/eclipse/pde/internal/ui/wizards/provisioner/ProvisionerListSelectionPage.java 5 Mar 2008 20:08:53 -0000 @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2006, 2007 IBM Corporation and others. + * Copyright (c) 2006, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -66,6 +66,14 @@ handleSelection(); } }); + fTableViewer.addDoubleClickListener(new IDoubleClickListener() { + public void doubleClick(DoubleClickEvent event) { + if (isPageComplete()) { + getWizard().getContainer().showPage(getNextPage()); + } + + } + }); fTextBox = new Text(sashForm, SWT.BORDER | SWT.WRAP | SWT.READ_ONLY); fTextBox.setText(new String());