1209497940
- Total activity 18
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
-
1209497940 created a post, AnsweredCan I prevent a PsiElement from being called or used?
I 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... -
-
-
1209497940 commented, -
-
1209497940 created a post, AnsweredCan I prevent user editing some PsiElement areas?
As the title says, I have got some PsiElement areas, and I want to prevent them from editing these areas(insert or move...) -
-
1209497940 created a post, AnsweredHow to get all PsiClass inside a PsiMethod?
As 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... -
-
1209497940 created a post, AnsweredHow can I add an icon to the leftside of file for a specific PsiElement?
I 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...