1209497940
- Total activity 18
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
-
Created Can I prevent a PsiElement from being called or used?
AnsweredI have mark a PsiElement as not callable.For example: public class A{// not callblepublic int a;} After the A.a is marked as unable to be called, no code can use A.a(just like a is private in outer... -
Created Can I prevent user editing some PsiElement areas?
AnsweredAs the title says, I have got some PsiElement areas, and I want to prevent them from editing these areas(insert or move...) -
Edited How to get all PsiClass inside a PsiMethod?
AnsweredAs the title says, I want to get all psiClass used in a psiMethod. I've tried 2 ways but they don't work: 1. use psiMethod.getOwnReferences() for (PsiSymbolReference psiSymbolReference: psiMethod.g... -
Edited How can I add an icon to the leftside of file for a specific PsiElement?
AnsweredI have got a specific PsiElement as follows: // get the elementPsiElement element = memberList[index].getOriginalElement(); For example, I get class FatherController and method speakWhat() by @MyA... -
Created Is there an easy way to get class/field/method using specific annotations?
AnsweredI have an annotation: @DeepLock(name = '') I want to find all class/field/methods using it, and get the name value inside the annotation.