Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got an error in Eclipse. What does this error message means:

The type iglu.ir.TermVector cannot be resolved. It is indirectly referenced from required .class files
share|improve this question
4  
Add jar that contains iglu.ir.TermVector in source path of your project. – Harry Joy Apr 5 '11 at 4:30

2 Answers

up vote 14 down vote accepted

It means: "A class that you use needs an other class that is not on the classpath." You should make sure (as Harry Joy suggests) to add the required jar to the classpath.

share|improve this answer

This is as likely a matter of Eclipse's getting confused as it is an actual error. I ignored the error and ran the web service whose endpointInterface it complained about, and it ran fine, except for having to deal with the dialog every time I wanted to run it. Just another opaque error that tells me nothing.

share|improve this answer
It's also not in a jar. It's in one of the projecs that's included in all the included projects where it's of any relevance. – Jerry Miller Dec 5 '12 at 14:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.