Interface MojoAnnotationsScanner
-
- All Known Implementing Classes:
DefaultMojoAnnotationsScanner
public interface MojoAnnotationsScanner
- Since:
- 3.0
- Author:
- Olivier Lamy
-
-
Field Summary
Fields Modifier and Type Field Description static List<String>CLASS_LEVEL_ANNOTATIONSstatic List<String>FIELD_LEVEL_ANNOTATIONSstatic List<String>METHOD_LEVEL_ANNOTATIONSstatic StringROLEstatic StringV4_API_ANNOTATIONS_PACKAGEstatic StringV4_API_PLUGIN_PACKAGE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,MojoAnnotatedClass>scan(MojoAnnotationsScannerRequest request)Scan classes for mojo annotations.
-
-
-
Field Detail
-
V4_API_PLUGIN_PACKAGE
static final String V4_API_PLUGIN_PACKAGE
- See Also:
- Constant Field Values
-
V4_API_ANNOTATIONS_PACKAGE
static final String V4_API_ANNOTATIONS_PACKAGE
- See Also:
- Constant Field Values
-
CLASS_LEVEL_ANNOTATIONS
static final List<String> CLASS_LEVEL_ANNOTATIONS
-
FIELD_LEVEL_ANNOTATIONS
static final List<String> FIELD_LEVEL_ANNOTATIONS
-
METHOD_LEVEL_ANNOTATIONS
static final List<String> METHOD_LEVEL_ANNOTATIONS
-
-
Method Detail
-
scan
Map<String,MojoAnnotatedClass> scan(MojoAnnotationsScannerRequest request) throws ExtractionException
Scan classes for mojo annotations.- Parameters:
request-- Returns:
- map of mojo-annotated classes keyed by full class name
- Throws:
ExtractionException
-
-