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