How to judge a java file?
Answered
I want to make a plugin to generate some JavaScript files. However, some problems that are not familiar with API have hindered me. How should i determine a java class is 'abstract' or not? How should i determine a method is 'static' or not? and how to determine access control privileges for classes or methods?
Waiting for your answer, thanks.
Please sign in to leave a comment.
See usages of com.intellij.lang.jvm.JvmModifier
Also, com.intellij.psi.PsiClass is well documented and worth reading.
thanks a lot