Example usage for org.apache.commons.bcel6.classfile Method getAnnotationEntries

List of usage examples for org.apache.commons.bcel6.classfile Method getAnnotationEntries

Introduction

In this page you can find the example usage for org.apache.commons.bcel6.classfile Method getAnnotationEntries.

Prototype

public AnnotationEntry[] getAnnotationEntries() 

Source Link

Usage

From source file:ru.objective.jni.utils.Utils.java

public static MethodExportInfo getMethodExportInfo(Method method) {
    MethodExportInfo result = new MethodExportInfo();

    if (!method.isPublic() || method.isAnnotation() || method.isSynthetic())
        return result;

    String name = method.getName();

    AnnotationEntry[] entries = method.getAnnotationEntries();

    for (AnnotationEntry annotationEntry : entries) {
        String translated = Signature.translate(annotationEntry.getAnnotationType());

        if (translated.equals(OJNIExclude.class.getName()))
            return result;

        if (translated.equals(OJNIExportName.class.getName())) {
            result.isCustom = true;//  ww w.j  a  v a 2 s  .c o  m

            ElementValuePair[] elementValuePairs = annotationEntry.getElementValuePairs();

            AnnotationType annotationType = AnnotationType.getInstance(OJNIExportName.class);

            for (ElementValuePair elementValuePair : elementValuePairs) {

                if (annotationType.memberTypes().get(elementValuePair.getNameString()) != null) {
                    name = elementValuePair.getValue().stringifyValue();
                }
            }
        }
    }

    result.name = name;

    return result;
}