public class AnnotationCollectorTransform extends Object
This class is the base for any annotation alias processor.
Modifiers | Name | Description |
---|---|---|
static class |
AnnotationCollectorTransform.ClassChanger |
Class used by CompilationUnit to transform the alias class into what is needed by the compiler. |
Type Params | Return Type | Name and description |
---|---|---|
|
public List<AnnotationNode> |
visit(AnnotationNode collector, AnnotationNode aliasAnnotationUsage, AnnotatedNode aliasAnnotated, SourceUnit source) Implementation method of the alias annotation processor. |
Implementation method of the alias annotation processor. This method will get the list of annotations we aliased from the collector and adds it to aliasAnnotationUsage. The method will also map all members from aliasAnnotationUsage to the aliased nodes. Should a member stay unmapped, we will ad an error. Further processing of those members is done by the annotations.
collector
- reference to the annotation with AnnotationCollectoraliasAnnotationUsage
- reference to the place of usage of the aliasaliasAnnotated
- reference to the node that has been annotated by the aliassource
- source unit for error reporting