我正在尝试在eclipse中创建一个插件,在右键单击包浏览器中的文件或文件夹时添加一个菜单项。该菜单项包含必须动态加载的某些命令(因此我无法在plugin.xml中对其进行硬编码)。这些命令实际上在另一个扩展中,它通过我提供的扩展点将自己附加到我的插件。
我现在正在做的是创建菜单项,使用附加到我的扩展点的所有命令填充它,并为所有这些命令添加ButtonListener。一切都是这样的,但有一个问题。我需要获取用户右键单击包浏览器中哪个项目的信息(是IFile还是IFolder项?),从我的研究中,我需要在处理程序中执行以下操作:
public Object execute(ExecutionEvent event) throws ExecutionException {
ISelection currentSelection = HandlerUtil.getCurrentSelection(event);
TreeSelection treeSelection = (TreeSelection) currentSelection;
Object firstElement = treeSelection.getFirstElement();
ActionMenu.setNode(firstElement);
return null;
}
其中“操作”菜单是表示菜单项的实际类,并负责填充它。不幸的是,我的插件中现在永远不会调用该代码。
我的问题是:
如何为每个命令动态创建一个处理程序,以便调用execute()函数?或者在我的ActionMenu类中有更好的方法来选择用户的右键单击(知道它是IFolder还是IFile)?
这是我的ActionMenu类中的相关代码(fill()函数,它将每个命令添加为子菜单项和ButtonListener嵌套类)。 ICommand是命令必须在另一个扩展中实现的接口:
...
public final void fill(final Menu menu, final int index) {
// Here you could get selection and decide what to do
// You can also simply return if you do not want to show a menu
List<ICommand> commands = new ArrayList<ICommand>();
IConfigurationElement[] contributions = Platform.getExtensionRegistry().getConfigurationElementsFor(Extension_Point_ID);
try {
for (IConfigurationElement e : contributions) {
final Object o =
e.createExecutableExtension("class");
commands.add((ICommand) o);
}
} catch (CoreException ex) {
System.out.println(ex.getMessage());
}
for (ICommand command : commands)
{
MenuItem menuItem = new MenuItem(menu, SWT.CHECK, index);
menuItem.setText(command.getName());
menuItem.addSelectionListener(new ButtonListener(command));
}
}
public class ButtonListener extends SelectionAdapter {
ICommand command_;
public ButtonListener(ICommand command) {
command_ = command;
}
@Override
public final void widgetSelected(final SelectionEvent e) {
if (node_ instanceof org.eclipse.core.resources.IFile) {
command_.executeFile(node_);
}
else if (node_ instanceof org.eclipse.core.resources.IFolder) {
command_.executeFolder(node_);
}
}
}
以下是我的plugin.xml文件的内容:
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension-point id="ca.polymtl.log8430.Command" name="Command" schema="schema/ca.polymtl.log8430.Command.exsd"/>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu?after=additions">
<menu
id="apply_command"
label="ApplyCommand">
</menu>
</menuContribution>
<menuContribution locationURI="popup:apply_command?after=additions">
<dynamic
class="ca.polymtl.log8430.popup.ActionMenu"
id="ca.polymtl.log8430.popup.actionMenu">
</dynamic>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="ca.polymtl.log8430.Handler"
commandId="ca.polymtl.log8430.Command1">
</handler>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="ca.polymtl.log8430.Command1"
name="Command_1">
</command>
</extension>
</plugin>
感谢您的帮助,如果您需要更多详情,请随时提出。
答案 0 :(得分:1)
鉴于您设置菜单的方式,您不需要使用处理程序。您只需在侦听器的widgetSelected
方法中获取当前选择:
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IStructuredSelection selection = (IStructuredSelection)page.getSelection();
注意:实际选择可能不会直接实现IFile
或IFolder
,因此您应该使用平台适配器管理器来查看它们是否adapt
到资源:
Object selObject = selection.getFirstElement();
IResource resource = (IResource)Platform.getAdapterManager().getAdapter(selObject, IResource.class);
然后测试resource
以查看它是IFile
还是IFolder
。