In Eclipse how can I get the packages childs of a package?

Consider this example:

+ org.stack
    org.stack.test
        - StackTest.java
    - Stack.java

When we do IPackageFragment.getChildren() in org.stack, Eclipse JDT only returns the compilation unit (Java Files)! But I want the all childs of a package: the all ICompilationUnits and the all Packages.

In this example when I apply IPackageFragment.getChildren() in org.stack, I want the org.stack.test and the ICompilationUnit Stack.java...

How can I do this?

link|improve this question

50% accept rate
feedback

2 Answers

IPackageFragment is not the correct starting point. You have to ask a higher level for the packages:

IPackageFragment: A single package. It contains ICompilationUnits or IClassFiles, depending on whether the IPackageFragmentRoot is of type source or of type binary. Note that IPackageFragment are not organized as parent-children. E.g. net.sf.a is not the parent of net.sf.a.b. They are two independent children of the same IPackageFragmentRoot.

Have a look at this article about the AST

link|improve this answer
I don't want to use AST to parse this information... So, I need to look to all of IPackageFragment names and check if the Package is or isn't child of other Package, right? – zecapistolas Nov 28 '11 at 13:48
@zecapistolas: have you read the quote about IPackageFragmentRoot? – user714965 Nov 28 '11 at 20:56
feedback

you need to do it in a recursive way.

here's some pseudo code

findAllClasses(package, classesCollection) {
    for(Class c: package.getClasses)
        classesCollection.add(c.getResourcePath)
    if(package.hasChildPackages)
        for(Package p: packages)
            findAllClasses(p, classesCollection)
}
link|improve this answer
This answer uses Java reflection, not the JDT API. – Andrew Eisenberg Jan 4 at 20:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.