blob: 73772e6e036999ecd5bfa5f3c271bfc3edf02eca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.internal.registry;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.core.commands.IParameterValues;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.views.IViewDescriptor;
/**
* Provides the parameter values for the show view command.
*
* @since 3.1
*/
public final class ViewParameterValues implements IParameterValues {
public final Map getParameterValues() {
final Map values = new HashMap();
final IViewDescriptor[] views = PlatformUI.getWorkbench()
.getViewRegistry().getViews();
for (int i = 0; i < views.length; i++) {
final IViewDescriptor view = views[i];
values.put(view.getLabel(), view.getId());
}
return values;
}
}