| [news.eclipse.platform] Re: Obtaining classes/types of a project |
Paul,
My first guess is that JDT is the way to go ... ICompilationUnit and associated IJavaElements are a way to work with java files in your workspace, it's what JDT was designed to do.
To use something like reflection you'd need the classes loaded in your running instance somehow. But reflection won't provide a list of types, just give you information about the types you ask.
I'd also ask your question on eclipse.tools.jdt ... they'd have a better idea.
PW