eclipse Ifield, Itype equivalent in intellij
Hi,
I have an eclipse plugin project where I use org.eclipse.jdt.core.IField, org.eclipse.jdt.core.IType etc in this. Now I am trying to create a similar plugin in IntelliJ. I can't find equivalent classes for these in IntelliJ API
Please sign in to leave a comment.
Having not done eclipse development myself, I believe you wish to look at the Java PSI related classes, for instance PsiMethod, PsiType, PsiField.
Take a look at the JavaPsiFacade class, to gain access to information such as this. Some initial examples can be found here - PSI Cookbook