Search in sources :

Example 1 with ModelExtractor

use of org.androidannotations.internal.model.ModelExtractor in project androidannotations by androidannotations.

the class AndroidAnnotationProcessor method extractAnnotations.

private AnnotationElementsHolder extractAnnotations(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
    timeStats.start("Extract Annotations");
    ModelExtractor modelExtractor = new ModelExtractor();
    AnnotationElementsHolder extractedModel = modelExtractor.extract(annotations, getSupportedAnnotationTypes(), roundEnv);
    timeStats.stop("Extract Annotations");
    return extractedModel;
}
Also used : AnnotationElementsHolder(org.androidannotations.internal.model.AnnotationElementsHolder) ModelExtractor(org.androidannotations.internal.model.ModelExtractor)

Aggregations

AnnotationElementsHolder (org.androidannotations.internal.model.AnnotationElementsHolder)1 ModelExtractor (org.androidannotations.internal.model.ModelExtractor)1