/******************************************************************************* * Copyright (c) 2009 SpringSource, a divison of VMware, Inc. * 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * SpringSource, a division of VMware, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.virgo.ide.ui.editors; import java.util.ArrayList; import org.eclipse.core.resources.IProject; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.dialogs.ElementListSelectionDialog; import org.eclipse.ui.model.WorkbenchLabelProvider; import org.eclipse.virgo.ide.facet.core.FacetUtils; /** * @author Christian Dupuis */ public class ProjectSelectionDialog extends ElementListSelectionDialog { public ProjectSelectionDialog(Shell parent) { super(parent, WorkbenchLabelProvider.getDecoratingWorkbenchLabelProvider()); setTitle("Bundle Selection"); setMessage("Select a Bundle:"); setElements(FacetUtils.getBundleProjects()); setMultipleSelection(true); } public IProject[] getSelectedProjects() { Object[] result = getResult(); ArrayList<IProject> projects = new ArrayList<IProject>(); for (Object project : result) { projects.add((IProject) project); } return projects.toArray(new IProject[0]); } }