private static <A extends Annotation, E extends Throwable> char callChar(
AnnotationInterceptor<A> annotationInterceptor,
int annotationId, A[] annotations, CallContext context, Arguments currentArguments,
ToCharFunction<Arguments> terminalInvokeFun) throws E {
A annotation = annotations[annotationId];
if (annotationId == annotations.length - 1) { // last annotation
return annotationInterceptor.onCall(annotation, context,
new SimpleCharInterceptionHandler(currentArguments, terminalInvokeFun));
} else {
return annotationInterceptor.onCall(annotation, context,
new SimpleCharInterceptionHandler(currentArguments,
(args) -> callChar(annotationInterceptor, annotationId + 1, annotations, context, args,
terminalInvokeFun)));
}
}
RepeatedAnnotationObjectInterceptor.java 文件源码
java
阅读 35
收藏 0
点赞 0
评论 0
项目:primeval-reflex
作者:
评论列表
文章目录