eclipse“内容辅助期间的问题”弹出窗口

时间:2010-08-19 18:21:22

标签: java eclipse content-assist

在键入一些Java代码时,我点击了.内的点/成员运算符(ObjectName.methodName),并在Eclipse的弹出窗口中出现了这个错误:

The `org.elcipse.jst.ws.jaxws.ui.jaxwsjavacompletioncomputer` 
proposal computer from the `org.eclipse.jst.ws.jaxws.ui` 
plug-in did not complete normally.

第二个弹出窗口紧接着显示消息:

"Cannot perform operation: The compilation unit 
is not in the build path of a Java project".

这是否意味着某些必需的库未安装,因为它需要?

3 个答案:

答案 0 :(得分:0)

some of the occurrences out there来看,您当前的项目似乎没有附加“Java性质”。

检查项目属性。请参阅if its .project file has a javanature in it

答案 1 :(得分:0)

听起来你的Eclipse安装有点困惑。根据我的经验,这里最好的方法是丢弃当前的安装,并解压缩新的。

答案 2 :(得分:0)

检查.project是否包含javanature,如下所示:

<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>

如果缺少,请添加...

现在已经很晚了,但我希望有人会发现它很有用。