Esempio n. 1
0
 public synchronized EngineConfig deregisterAnnotationProcessor(
     AnnotationProcessor<?> annotationProcessor) {
   annotationProcessors.remove(annotationProcessor.getType());
   return this;
 }
Esempio n. 2
0
 public synchronized EngineConfig registerAnnotationProcessor(
     AnnotationProcessor<?> annotationProcessor) {
   annotationProcessors.put(annotationProcessor.getType(), annotationProcessor);
   return this;
 }