Fix a Man-made Mistake in Java Project of Eclipse
Author
Zhou Renjian
Create@
2004-08-11 21:17

.classpath:
======
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="var" path="BC_PROVIDER"/>
<classpathentry kind="var" path="APACHE_COMMONS_HTTPCLIENT"/>
<classpathentry kind="lib" path="sheca.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
By mistake, deleting
======
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
======
The project displays error! It marks error at the begining of a Java file, and when you delete the Java file, it will mark the other Java files. It takes me a long time to find out where the error takes place.
posted on 2004年07月12日 6:01 PM