示例#1
0
 private void loadAnnotationCache(RushClassFinder rushClassFinder) {
   for (Class<? extends Rush> clazz : rushClassFinder.findClasses(rushConfig)) {
     List<Field> fields = new ArrayList<>();
     ReflectionUtils.getAllFields(fields, clazz, rushConfig.orderColumnsAlphabetically());
     annotationCache.put(clazz, new RushAnnotationCache(clazz, fields, rushConfig));
   }
 }