当前位置: 首页>>代码示例>>Java>>正文


Java AnnotationVisitor.visitArray方法代码示例

本文整理汇总了Java中org.objectweb.asm.AnnotationVisitor.visitArray方法的典型用法代码示例。如果您正苦于以下问题:Java AnnotationVisitor.visitArray方法的具体用法?Java AnnotationVisitor.visitArray怎么用?Java AnnotationVisitor.visitArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.objectweb.asm.AnnotationVisitor的用法示例。


在下文中一共展示了AnnotationVisitor.visitArray方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: visitAnnotationValue

import org.objectweb.asm.AnnotationVisitor; //导入方法依赖的package包/类
private void visitAnnotationValue(AnnotationVisitor annotationVisitor, AnnotationValue<?> value) {
    String name = value.getName();
    if (value instanceof EnumAnnotationValue) {
        annotationVisitor.visitEnum(name, ((EnumAnnotationValue) value).getTypeDesc(), (String) value.getValue());
    } else if (value instanceof SimpleAnnotationValue) {
        annotationVisitor.visit(name, value.getValue());
    } else if (value instanceof ArrayAnnotationValue) {
        AnnotationVisitor arrayVisitor = annotationVisitor.visitArray(name);
        AnnotationValue<?>[] values = ((ArrayAnnotationValue) value).getValue();
        for (AnnotationValue<?> annotationValue : values) {
            visitAnnotationValue(arrayVisitor, annotationValue);
        }
        arrayVisitor.visitEnd();
    } else if (value instanceof AnnotationAnnotationValue) {
        AnnotationMember annotation = ((AnnotationAnnotationValue) value).getValue();
        AnnotationVisitor annVisitor = annotationVisitor.visitAnnotation(name, annotation.getName());
        visitAnnotationValues(annotation, annVisitor);
    }
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:20,代码来源:ApiMemberSelector.java

示例2: visitAnnotationValues

import org.objectweb.asm.AnnotationVisitor; //导入方法依赖的package包/类
private void visitAnnotationValues(Annotation annotation, AnnotationVisitor annotationVisitor) {
    for (Method method : annotation.annotationType().getDeclaredMethods()) {
        String name = method.getName();
        Class<?> returnType = method.getReturnType();
        if (returnType.isEnum()) {
            annotationVisitor.visitEnum(name, Type.getType(returnType).getDescriptor(), getAnnotationParameterValue(annotation, method).toString());
        } else if (returnType.isArray() && !PRIMITIVE_TYPES.contains(returnType.getComponentType())) {
            AnnotationVisitor arrayVisitor = annotationVisitor.visitArray(name);
            Object[] elements = (Object[]) getAnnotationParameterValue(annotation, method);
            visitArrayElements(arrayVisitor, returnType.getComponentType(), elements);
            arrayVisitor.visitEnd();
        } else if (returnType.equals(Class.class)) {
            Class<?> clazz = (Class<?>) getAnnotationParameterValue(annotation, method);
            annotationVisitor.visit(name, Type.getType(clazz));
        } else if (returnType.isAnnotation()) {
            Annotation nestedAnnotation = (Annotation) getAnnotationParameterValue(annotation, method);
            AnnotationVisitor nestedAnnotationVisitor = annotationVisitor.visitAnnotation(name, Type.getType(returnType).getDescriptor());
            visitAnnotationValues(nestedAnnotation, nestedAnnotationVisitor);
            nestedAnnotationVisitor.visitEnd();
        } else {
            annotationVisitor.visit(name, getAnnotationParameterValue(annotation, method));
        }
    }
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:25,代码来源:AsmBackedClassGenerator.java

示例3: accept

import org.objectweb.asm.AnnotationVisitor; //导入方法依赖的package包/类
/**
 * Makes the given visitor visit a given annotation value.
 * 
 * @param av
 *            an annotation visitor. Maybe <tt>null</tt>.
 * @param name
 *            the value name.
 * @param value
 *            the actual value.
 */
static void accept(final AnnotationVisitor av, final String name,
        final Object value) {
    if (av != null) {
        if (value instanceof String[]) {
            String[] typeconst = (String[]) value;
            av.visitEnum(name, typeconst[0], typeconst[1]);
        } else if (value instanceof AnnotationNode) {
            AnnotationNode an = (AnnotationNode) value;
            an.accept(av.visitAnnotation(name, an.desc));
        } else if (value instanceof List) {
            AnnotationVisitor v = av.visitArray(name);
            if (v != null) {
                List<?> array = (List<?>) value;
                for (int j = 0; j < array.size(); ++j) {
                    accept(v, null, array.get(j));
                }
                v.visitEnd();
            }
        } else {
            av.visit(name, value);
        }
    }
}
 
开发者ID:ItzSomebody,项目名称:DirectLeaks-AntiReleak-Remover,代码行数:34,代码来源:AnnotationNode.java

示例4: addAnnotationTree

import org.objectweb.asm.AnnotationVisitor; //导入方法依赖的package包/类
private static void addAnnotationTree(AnnotationVisitor av0, Annotation ann,
        Class<? extends Annotation> annotationType)
        throws IllegalAccessException, InvocationTargetException {
    Method[] annMethods = annotationType.getDeclaredMethods();
    for (Method m : annMethods) {
        Class<?> returnType = m.getReturnType();

        if (returnType.isArray()) {
            Class<?> compType = returnType.getComponentType();
            String compDesc = Type.getDescriptor(compType);
            AnnotationVisitor avArray = av0.visitArray(m.getName());
            Object[] arr = (Object[]) m.invoke(ann);
            for (Object comp : arr) {
                addAnnotation(null, compType, compDesc, avArray, comp);
            }
            avArray.visitEnd();
        } else {
            addAnnotation(m.getName(), returnType, Type.getDescriptor(returnType), av0, m.invoke(ann));
        }
    }
}
 
开发者ID:primeval-io,项目名称:primeval-reflex,代码行数:22,代码来源:ProxyClassGenerator.java


注:本文中的org.objectweb.asm.AnnotationVisitor.visitArray方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。