[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.jdt] How to get the correct package declaration for a given IFolder

Hi,

I have an IFolder instance and I need to find out the corresponding package declaration.

Given circumstances:
- the IFolder instance IS part of an IJavaProject
- the IFolder instance IS on the classpath
- the IFolder instance does NOT yet contain any other Java files (it only contains Java properties files)


Example:
- the getFullPath() method of the IFolder instance returns:
"/src/com/mycompany/test/nls"

- then I need a method to resolve the package declaration to:
"com.mycompany.test.nls"


Is there a simple/obvious way do that?

Thanks,
T^2