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