1209497940
- 活动总数 18
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 5
-
1209497940 创建了一个帖子, 已回答Can 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 进行了评论, -
-
1209497940 创建了一个帖子, 已回答Can 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 创建了一个帖子, 已回答How 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 创建了一个帖子, 已回答How 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...