我正在尝试使用
确定某个方法在特定类上是否可用psiClass.getMethods();
// filter methods down to the one I'm looking for
我可以使用FQCN来获取PsiType
,但是不知道如何从PsiClass
获取PsiType
,或者这是完全错误的方法。
String className = "com.foo.Bar";
PsiType type = PsiElementFactory.SERVICE.getInstance(project).getTypeByFQClassName(className);
鉴于FQCN,获得课程的正确方法是什么?