Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
English (United States)
简体中文
Sign in
Anna Kozlova
Total activity
1422
Last activity
June 12, 2023 14:16
Member since
October 25, 2005 10:47
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
503
Activity overview
Articles (0)
Posts (0)
Comments (919)
Sort by recent activity
Recent activity
Votes
Created
May 16, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Parsing PsiField with chained methods
0 votes
Created
May 15, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to follow to some psi element in file?
0 votes
Created
May 15, 2017 05:48
Hi, There are utility methods for this e.g. com.intellij.psi.util.PsiTreeUtil#findChildrenOfType. Anna
Community
IntelliJ IDEA Open API and Plugin Development
Parsing PsiField with chained methods
0 votes
Created
May 12, 2017 11:59
the correct way to fix it is to provide extension points to the inspection, so it can ignore special files. PR probably?
Community
IntelliJ IDEA Open API and Plugin Development
Disabling unwanted inspection from dependent
0 votes
Created
May 12, 2017 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Disabling unwanted inspection from dependent
0 votes
Created
April 26, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Code inspection related with multiple files/multiple places in the same file
0 votes
Created
April 26, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Code inspection related with multiple files/multiple places in the same file
0 votes
Created
April 20, 2017 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
Community
IntelliJ IDEA Open API and Plugin Development
Comparision with IntelliJ code completion engine?
0 votes
Created
April 19, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to move around methods within a class ?
0 votes
Created
April 18, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Naming conflicts in inspection profiles
0 votes
«
First
‹
Previous
Next
›
Last
»