435436437438439440441442443444445
final Method[] methodArray = type.getDeclaredMethods(); for (final Method method : methodArray) { final Reference anno = method.getAnnotation(Reference.class); if (anno == null) { continue; }
453454455456457458459460461462463
439440441442443444445446447448449