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