I need to find out, in which path this following path is resolved:
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
It’s no classpath variabl to be found unter Window->Preferences, Java->Build Path->Classpath Variables.
Where can I found the value von JUNIT_CONTAINER/4?
Thanks
A
classpathentryof kind “con” means classpath container.From Java Class Paths help page:
Classpath containers can be manipulated through JavaCore methods getClasspathContainer and setClasspathContainer.
So in your case, to be really sure about the resolved path, you could query your own project through those calls, like this
ClassPathUtils