主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Anna Kozlova
活动总数
1422
最后的活动
2023年06月12日 14:16
成员加入日期
2005年10月25日 10:47
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
503
活动概览
文章(0)
帖子(0)
评论(919)
按最近的活动排序
最近的活动
投票数
创建于
2017年05月16日 13:56
I'd rather use recursive visitor for the task com.intellij.psi.JavaRecursiveElementWalkingVisitor, visit methodCalls and their arguments. I am not sure what you try to do with the code above, thoug...
社区
IntelliJ IDEA Open API and Plugin Development
Parsing PsiField with chained methods
0 票
创建于
2017年05月15日 08:52
Hi Evgeniy, if element is com.intellij.pom.Navigatable, then you can call navigate. If the element is not, then you need to element.getTextRange() to get the offset of the element and editor.getCar...
社区
IntelliJ IDEA Open API and Plugin Development
How to follow to some psi element in file?
0 票
创建于
2017年05月15日 05:48
Hi, There are utility methods for this e.g. com.intellij.psi.util.PsiTreeUtil#findChildrenOfType. Anna
社区
IntelliJ IDEA Open API and Plugin Development
Parsing PsiField with chained methods
0 票
创建于
2017年05月12日 11:59
the correct way to fix it is to provide extension points to the inspection, so it can ignore special files. PR probably?
社区
IntelliJ IDEA Open API and Plugin Development
Disabling unwanted inspection from dependent
0 票
创建于
2017年05月12日 10:57
why do you want to disable some inspections which user once has enabled? I doubt that it's a good idea, sorry. You can do that calling normal disableTool methods but are you sure that it should be ...
社区
IntelliJ IDEA Open API and Plugin Development
Disabling unwanted inspection from dependent
0 票
创建于
2017年04月26日 17:41
The visitors would be called on every change and as they are called in parallel, you should not rely on any order. E.g. if you have a method, then you may check if it is used and if the usage was d...
社区
IntelliJ IDEA Open API and Plugin Development
Code inspection related with multiple files/multiple places in the same file
0 票
创建于
2017年04月26日 13:55
Hi Tianshil, IDEA restarts highlighting for all visible editors on every change (with some delay to allow fast typing). So if you would check permissions before java api check, then you should achi...
社区
IntelliJ IDEA Open API and Plugin Development
Code inspection related with multiple files/multiple places in the same file
0 票
创建于
2017年04月20日 13:41
Do you run this from inside IDE? Then you can select the module java-tests in the project view and run all tests there. Anna
社区
IntelliJ IDEA Open API and Plugin Development
Comparision with IntelliJ code completion engine?
0 票
创建于
2017年04月19日 08:39
You correctly found the rearranger and it would definitely conflict with your plugin if you don't plug there but create your own order. Say we have move refactoring, it would place the method withi...
社区
IntelliJ IDEA Open API and Plugin Development
How to move around methods within a class ?
0 票
创建于
2017年04月18日 11:43
You can define the shortName and in most cases they are explicitly defined. On the other hand there is an implementation which you can reuse if your inspections are specific. It's impossible to red...
社区
IntelliJ IDEA Open API and Plugin Development
Naming conflicts in inspection profiles
0 票
«
第一页
‹
上一页
下一页
›
最后
»