classpath

Classpath Build Order Changes

I am using Eclipse 3.5 JEE 64 bit on OS X Snow Leopard. Was wondering how the .classpath file's tag's order gets changed everytime I run a standard Ant build script. When I manually change the build path order like this (via Eclipse): Right click on project in Project Explorer. A context menu opens up Go to Build Path Configure Buil...

Java classes not interacting properly

I have two Java class files: primegen and primecheck sitting in the same directory. primegen calls a public static function from primecheck. primecheck compiles fine. However, I receive the following compilation error in primegen: primegen.java:31: cannot find symbol symbol : variable primecheck location: class primegen } wh...

Eclipse PDE: How to add java project's classpath to a plug-in's classpath?

People, I already searched a lot but I'm not finding my answer.. I did a eclipse plugin that writes junit test cases from source code. By now, I'm starting to use reflection in my code, but the plugin can't find the classes in the java project being tested! Is there a way to use the selected project classpath in my plug-in? How?? I'...