blob: d53ac6011e48eef34e315c0d31bdd0c2eddf4a26 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.tests.menus;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.core.commands.IParameterValues;
import org.eclipse.core.commands.common.NotDefinedException;
import org.eclipse.core.commands.contexts.Context;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.contexts.IContextService;
public class ContextIdValues implements IParameterValues {
public Map getParameterValues() {
Map values = new HashMap();
IContextService contextService = (IContextService) PlatformUI
.getWorkbench().getService(IContextService.class);
Context[] definedContexts = contextService.getDefinedContexts();
try {
for (int i = 0; i < definedContexts.length; i++) {
values.put(definedContexts[i].getName(), definedContexts[i]
.getId());
}
} catch (NotDefinedException e) {
// This shouldn't happen since we asked for defined contexts,
// but you never know.
e.printStackTrace();
}
return values;
}
}