No schema found for … extension point 问题 (转)
很多时候在编辑plugin.xml 文件的Extension 时,IDE 总提示警告,内容为“No schema found for ‘org.eclipse.core.runtime.applications’ extension point”等,在对应的Extension 中右键内容为“Generic”,没有对应的子项的信息提示。
原因为对应的org.eclipse.core.runtime.applications 的source plugin 没有找到。使用Eclipse SDK 版本的开发人员一般不会遇到这种问题,SDK 中包含了所有的source plugin,如果目前的IDE 的plugins下面确实没有source plugins,最简单的解决方案是找到一个版本相同的SDK,将source plugins 复制过来即可。也可以在Preference——Plug-in Development——Target Platform,选中当前platform,进行编辑,给缺少source 的plugin 链接上source plugin。
个人使用: 把eclipse sdk下面的 org.eclipse.ui.source 复制到你使用的eclipse工具的plugin下面,重新打开,OK