Is it possible to find all classes or interfaces in a given package? There is no simple way to do it in "plain Java", but OSGi probably does a better job, doesn't it?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The answer is yes starting in 4.3. A new API has been added: BundleWiring.listResources(String path, String filePattern, int options) which can be used to scan the class path of a bundle. With the appropriate parameters, you can get the names of all the classes in a package. |
|||
|
|
|
In short: No. OSGi extends the Java classloading mechanism by providing classes when they are needed, but there is no API that allows you to inspect which classes are available in a given package. |
|||||||||||
|