I hit F5 ~1000 times and restarted eclipse (also with -clean), deleted /bin, but nothing helps. Manually importing DoodleClient does not help. DoodleClient exists and is perfect
Compiler checks dependencies on compiled files, not on source code. So it means the compiler doesn't file DoodleClient.class.
To check if you have the compiled class, open the Navigator view (Window -> Show View -> Navigator
) and look for the directory that contains the .class files (usually bin/
or target/classes
for Maven) and check if you have there DoodleClient.class file. If you don't you can:
excluding
attribute in some classpathentry (delete it from the exclusion attribute if it does)