Goto class & Goto method Permanently deleted user Created December 10, 2007 12:43 Hi all,Is there a way to "go to class" and "go to method" via API using class/method name?Thanks,Andre
check out PsiManager / PsiUtil
one of them might have a method for at least finding a class
a better answer for you
look at PsiManager.getShortNamesCache();
you will get a PsiShortNamesCache which does what you want
Thank you very much!