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;
}
Aggregations