我有一个带有 View 部分的 Eclipse 插件。在此视图部分中,我有一个表,当用户右键单击该表中的一行时,我想添加一个子菜单。我怎样才能以编程方式做到这一点?
我在我的 plugin.xml 中定义了 command 和 menuContribution:
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="true"
class="com.sintec.eclipseplugins.clippy.menu.DeleteMenuContribution"
locationURI="menu:delete?after=additions">
</menuContribution>
</extension>
我还创建了扩展 ExtensionContributionFactory 的贡献类:
public class DeleteMenuContribution extends ExtensionContributionFactory {
@Override
public void createContributionItems(IServiceLocator serviceLocator, IContributionRoot additions) {
// build a couple of command-based contribution parameters
CommandContributionItemParameter pAA = new CommandContributionItemParameter(
serviceLocator,
"DeleteCommand",
"com.sintec.eclipseplugins.clippy.delete",
SWT.PUSH);
pAA.label = "Delete Command";
// create actual contribution items and add them to the given additions reference
CommandContributionItem itemAA = new CommandContributionItem(pAA);
itemAA.setVisible(true);
additions.addContributionItem(itemAA, null);
}
}
Aaaand 最后但并非最不重要的一点是,我的 ViewPart 中有此代码,我想在其中将菜单添加到表中:
IMenuManager mgr = new MenuManager().findMenuUsingPath("menu:delete?after=additions");
MenuManager mgr2 = new MenuManager();
mgr2.add(mgr);
tableViewer.getTable().setMenu(mgr2.createContextMenu(tableViewer.getTable()));
问题是找不到菜单。我很确定我错过了什么……菜单 URI 是否正确?