The classes macro provides a query function in an analyzed bundle. While analyzing, the Analyzer stores each found class on the Bundle-Classpath with some key information. A simple query language is used to query this dictionary. For example, if you want to make a manifest header with all public classes in the bundle:
Public-Classes: ${classes;PUBLIC}The query language is conjunctive, that is, all entries form an AND. For example, if you want to find all PUBLIC classes that are also not abstract you would do:
PublicConcrete-Classes: ${classes;CONCRETE}
The query can also parameters. This is a pattern that must match some aspect of the class. For example, it is possible to query for classes that extend a certain base class:
Test-Cases: ${classes;CONCRETE;EXTENDS;junit.framework.TestCase}
All pattern matching is based on fully qualified name and uses the globbing model.
The following table specifies what query options there are:
'''Parameter''' | '''Description''' | IMPLEMENTSPATTERN | The class must implement at least one interface that matches the given pattern. This takes inheritance into account as long as intermediates can be found the classpath | EXTENDSPATTERN | The class must implement at least one interface that matches the given pattern. This takes inheritance into account as long as intermediates can be found the classpath. | IMPORTSPATTERN | The class must use a type from another package that matches the given pattern | NAMEDPATTERN | The class fqn must match the given pattern. | ANYMatches any class | VERSIONPATTERN | The class format of the given class must match the given version. The version is given as "
| Class must not be abstract |
ABSTRACT
| Class must be abstract |
PUBLIC
| Class must be public |
ANNOTATION
PATTERN |
The class must have an annotation that matches the pattern. The set of annotations is all annotations in the class, also the annotations on fields and methods. |
(:tableend:)
###Caveat
bnd will attempt to use the resources on the classpath if a super class or interface that is referenced from an analyzed class is not in the class space. However, bnd does not require that all dependencies are available on the classpath. In such a case it is not possible to do a complete analysis. For example, if A extends B and B extends C then it can only be determined that A extends C if B can be analyzed.
static String _classesHelp = "${classes;'implementing'|'extending'|'importing'|'named'|'version'|'any'; |