PsiType from FQN
Is there a utility for getting the PsiType given a fully qualified type name? I am developing a language plugin and am implementing resolve() on references. For now, I simply want to get either a Java type or my languge type from a given name e.g., "abc.foo.MyType".
Scott
Please sign in to leave a comment.
I discovered JavaPsiFacade, which seems to work and is not limited to just Java classes. Seems any PsiClass type can be resolved through it, right?
Scott