use of org.androidannotations.roboguice.handler.RoboGuiceHandler in project androidannotations by androidannotations.
the class RoboGuicePlugin method getHandlers.
@Override
public List<AnnotationHandler<?>> getHandlers(AndroidAnnotationsEnvironment androidAnnotationEnv) {
List<AnnotationHandler<?>> annotationHandlers = new ArrayList<>();
annotationHandlers.add(new RoboGuiceHandler(androidAnnotationEnv));
return annotationHandlers;
}
Aggregations