2

我正在为我的项目编写 Intellij IDEA 插件,但我遇到了一个问题 - 我无法PsiMethod从我的代码中获得有关方法 ( ) 的一些信息。

首先,我想知道这种方法是否公开。其次,我想获得参数类的完全限定名称。目前我正在这样做:

method.getReturnTypeNoResolve().getInternalCanonicalText()

但它不提供标准 JVM 类(如String和)的全名(带有包名) List

更新用以下代码解决了第一个问题:

PsiUtil.getAccessLevel(method.getModifierList()) == PsiUtil.ACCESS_LEVEL_PUBLIC

但我仍然无法获得完全限定的类名

更新 2这是我的代码的完整列表:

Project currentProject = DataKeys.PROJECT.getData(e.getDataContext());

    PsiClass abstractComponentClass = JavaPsiFacade.getInstance(currentProject).findClass("com.mjolnirr.lib.component.AbstractComponent", GlobalSearchScope.allScope(currentProject));

    TreeClassChooser result = TreeClassChooserFactory
            .getInstance(currentProject)
            .createInheritanceClassChooser("Choose the class to generate manifest",
                    GlobalSearchScope.projectScope(currentProject),
                    abstractComponentClass,
                    false,
                    false,
                    null);
    result.showDialog();

    PsiClass classToGenerate = result.getSelected();

    List<ManifestMethod> methods = new ArrayList<ManifestMethod>();

    for (PsiMethod method : classToGenerate.getAllMethods()) {
        //  If this method is inherited from the Object class we don't need it
        if (isComponentInitialize(method)) {
            continue;
        }

        List<ManifestParameter> parameters = new ArrayList<ManifestParameter>();

        for (PsiParameter param : method.getParameterList().getParameters()) {
            parameters.add(new ManifestParameter(param.getType().getCanonicalText().replaceAll("\\<.*?\\>", "")));
        }

        if (method.getReturnType() != null) {
            ManifestMethod manifestMethod = new ManifestMethod(method.getName(),
                    method.getReturnTypeNoResolve().getInternalCanonicalText().replaceAll("\\<.*?\\>", ""),
                    parameters);

            if (!methods.contains(manifestMethod) && isPublic(method)) {
                System.out.println("->" + method.getReturnType().getCanonicalText());

                methods.add(manifestMethod);
            }
        }
    }
4

1 回答 1

0

已解决 - 我的测试 IDEA 实例连接了错误的 Java SDK。

于 2013-11-03T15:14:52.170 回答