下面介绍两种方法,首先找到插件项目的plugin.xml,打开之后找到扩展tab页
第一种方法:添加org.eclipse.ui.actionSets——新建actionSet(注意visible要设置为true哦)——新建action(aciont 所对应的类必须实现org.eclipse.ui.IWorkbenchWindowActionDelegate 接口)
public void run()
{
//执行代码体
}
第二种方法:step1,添加org.eclipse.ui.menus——新建menuContribution(如果要显示在工具栏上则locationURI=toolbar:org.eclipse.ui.main.toolbar?after=additions)——新建command(此处icon为图片,commandId为后面自己所添加的ID)
step2,添加一个org.eclipse.ui.commadns——新建command(此处的ID为前面的commandId,此处的defaultHandler为对应的操作类,此类必须继承自org.eclipse.core.commands.AbstractHandler)
public Object execute(ExecutionEvent event) throws ExecutionException
{
//执行代码体
}