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?