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
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||||||||||
|