java eclipse包编译错误
我的 eclipse 包中出现以下错误。我正在尝试运行由不再可用的另一个人完成的现有代码。
这意味着什么?
Multiple markers at this line
- The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved. It is indirectly referenced from required .class files
- The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved. It is indirectly referenced from required .class files
无法解析
和从必需的.class间接引用
是什么意思?
如果我应该导入这些类/接口,我在哪里可以找到它们?
I have the following error in my eclipse package. I am trying to run an already existing code done by another person who is no longer available.
What does this mean?
Multiple markers at this line
- The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved. It is indirectly referenced from required .class files
- The type org.eclipse.core.runtime.IConfigurationElement cannot be resolved. It is indirectly referenced from required .class files
What does cannot be resolved
and indirectly referenced from required .class
mean?
If i should import these class/interface where can i find them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您引用另一个插件中的代码,则需要确保将该插件声明为插件清单中的依赖项。
If you are referencing code in another plugin, you need to make sure you declare that plugin as a dependency in your plugin's manifest.
您尝试在哪个插件中找到
org.eclipse.core.runtime.IConfigurationElement
类,然后将该插件导入您的项目中。You try to find the
org.eclipse.core.runtime.IConfigurationElement
class in which plugin, then you import the plugin in your project.