Hi,
I want to add parameters to a CommandContributionItemParameter. I have the following code:
Map<String, Object> commandParamametersMap = new HashMap<String, Object>();
commandParamametersMap.put("name", object);
param.parameters = commandParamametersMap;
This does not throw an Exception but the CommandContributionItem I create from this paramater is not displayed in the context menu. It is displayed when not passing parameters to it. Is there a convenient way to pass parameters to my CommandContributionItemParameter?
Ralph