本文整理汇总了Java中org.objectweb.asm.MethodVisitor.visitParameterAnnotation方法的典型用法代码示例。如果您正苦于以下问题:Java MethodVisitor.visitParameterAnnotation方法的具体用法?Java MethodVisitor.visitParameterAnnotation怎么用?Java MethodVisitor.visitParameterAnnotation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.objectweb.asm.MethodVisitor
的用法示例。
在下文中一共展示了MethodVisitor.visitParameterAnnotation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visitAnnotationMembers
import org.objectweb.asm.MethodVisitor; //导入方法依赖的package包/类
private void visitAnnotationMembers(MethodVisitor mv, Set<AnnotationMember> annotationMembers) {
for (AnnotationMember annotation : annotationMembers) {
AnnotationVisitor annotationVisitor;
if (annotation instanceof ParameterAnnotationMember) {
annotationVisitor = mv.visitParameterAnnotation(
((ParameterAnnotationMember) annotation).getParameter(), annotation.getName(),
annotation.isVisible());
} else {
annotationVisitor = mv.visitAnnotation(annotation.getName(), annotation.isVisible());
}
visitAnnotationValues(annotation, annotationVisitor);
}
}
示例2: addMethodParameterAnnotations
import org.objectweb.asm.MethodVisitor; //导入方法依赖的package包/类
private static void addMethodParameterAnnotations(Method method, MethodVisitor mv)
throws IllegalAccessException, InvocationTargetException {
Annotation[][] parameterAnnotations = method.getParameterAnnotations();
for (int i = 0; i < parameterAnnotations.length; i++) {
Annotation[] annotations = parameterAnnotations[i];
for (Annotation ann : annotations) {
Class<? extends Annotation> annotationType = ann.annotationType();
AnnotationVisitor av0 = mv.visitParameterAnnotation(i, Type.getDescriptor(annotationType), true);
addAnnotationTree(av0, ann, annotationType);
av0.visitEnd();
}
}
}