Eclipse JDT适配器到java.lang.reflect

时间:2011-05-23 19:34:27

标签: java reflection eclipse-jdt

我需要将Eclipse JDT集成到基于java.lang.reflect的现有API中。我的问题是:是否有现有的接口或适配器?做这个的最好方式是什么?谁能指点我做一个教程呢?

例如,我需要从java.lang.reflect.Method检索org.eclipse.jdt.core.dom.IMethodBinding

同样,我需要从java.lang.Classorg.eclipse.jdt.core.dom.Type获取org.eclipse.jdt.core.dom.ITypeBinding。我发现这可以通过以下方式实现:

Class<?> clazz = Class.forName(typeBinding.getBinaryName());

当然,这是一个非常简单的解决方案,假设该类已经存在于类路径中,并且不会通过JDT API进行更改 - 因此它远非完美。但应该指出的是,这两个假设确实适用于我的具体情况。

1 个答案:

答案 0 :(得分:0)

鉴于该类已存在于类路径中并且实际上并未通过JDT API进行更改,我自己实现了一些。

例如,可以使用以下代码将IMethodBinding转换为Method

    IMethodBinding methodBinding = methodInvocation.resolveMethodBinding();
    Class<?> clazz = retrieveTypeClass(methodBinding.getDeclaringClass());
    Class<?>[] paramClasses = new Class<?>[methodInvocation.arguments().size()];
    for (int idx = 0; idx < methodInvocation.arguments().size(); idx++) {
        ITypeBinding paramTypeBinding = methodBinding.getParameterTypes()[idx];
        paramClasses[idx] = retrieveTypeClass(paramTypeBinding);
    }
    String methodName = methodInvocation.getName().getIdentifier();
    Method method;
    try {
        method = clazz.getMethod(methodName, paramClasses);
    } catch (Exception exc) {
        throw new RuntimeException(exc);
    }

private Class<?> retrieveTypeClass(Object argument) {
    if (argument instanceof SimpleType) {
        SimpleType simpleType = (SimpleType) argument;
        return retrieveTypeClass(simpleType.resolveBinding());
    }
    if (argument instanceof ITypeBinding) {
        ITypeBinding binding = (ITypeBinding) argument;
        String className = binding.getBinaryName();
        if ("I".equals(className)) {
            return Integer.TYPE;
        }
        if ("V".equals(className)) {
            return Void.TYPE;
        }
        try {
            return Class.forName(className);
        } catch (Exception exc) {
            throw new RuntimeException(exc);
        }
    }
    if (argument instanceof IVariableBinding) {
        IVariableBinding variableBinding = (IVariableBinding) argument;
        return retrieveTypeClass(variableBinding.getType());
    }
    if (argument instanceof SimpleName) {
        SimpleName simpleName = (SimpleName) argument;
        return retrieveTypeClass(simpleName.resolveBinding());
    }
    throw new UnsupportedOperationException("Retrieval of type " + argument.getClass() + " not implemented yet!");
}

请注意,方法retrieveTypeClass也解决了第二个问题。希望这对任何人都有帮助。