[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
|
- From: Truck Turner <eclipse@xxxxxxxxx>
- Date: Wed, 05 Apr 2006 17:59:24 +0200
- Newsgroups: eclipse.tools.jdt
- Organization: EclipseCorner
- User-agent: Mozilla Thunderbird 1.0.7 (Windows/20050923)
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