今天 eclipse插件开发中的两个问题及解决

1.运行时报类型转换错误。明明类型一模一样就是转换失败

	public void selectionChanged(IAction action, ISelection selection) {
		IAdaptable adaptable = (IAdaptable) ((IStructuredSelection) selection) .getFirstElement();
		adaptable = (IAdaptable) ((IStructuredSelection) selection).getFirstElement();
		if (adaptable instanceof IResource) {
			System.out.println( (IResource) adaptable);
		}
	}


原来是因为没有添加eclipse plugin resource包的依赖造成的。

今天 eclipse插件开发中的两个问题及解决_第1张图片

 

对应于

 今天 eclipse插件开发中的两个问题及解决_第2张图片

2.如何去掉运行时的众多其它插件

删除

D:\develop\eclipse-sdk\runtime-EclipseApplication

即可

你可能感兴趣的:(今天 eclipse插件开发中的两个问题及解决)