コード例 #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;
 }