Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
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 18, 2016 09:51
Hi John, I hope you don't want to replace the common editor menu with your popup. In order to add action there you need to add your AnAction to the popup menu. There are a lot of documentation how ...
Community
IntelliJ IDEA Open API and Plugin Development
How do I get Java specific semantic information about a code token when context clicked?
0 votes
Created
March 29, 2016 11:03
Please provide the context, why do you need to compare 2 methods. I don't get why do you want to consider different method foo(T) from 2 different parameterisations of the containing class. The c...
Community
IntelliJ IDEA Open API and Plugin Development
Comparing two PsiMethods
0 votes
Created
January 25, 2016 09:49
Hi, you may create visitor and collect all variables/assignments you need psiClass.accept(visitor). For variables you may also collect them through the dedicated processor (com.intellij.psi.scope.p...
Community
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 votes
Created
March 29, 2016 11:10
How do know what method to add? Where do you get the correct signature?
Community
IntelliJ IDEA Open API and Plugin Development
Comparing two PsiMethods
0 votes
Created
February 02, 2016 18:30
visitAssignment is called for assignment x = 0; if you have int x = 0; then it's variable declaration and is covered by visitVariable. You may see the structure of PSI if you call Tools | View PSI ...
Community
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 votes
Created
February 03, 2016 19:49
Call ReferencesSearch.search(variable) - it would find all references on this variable in it's scope (in java and other supported languages). Please check https://github.com/JetBrains/intellij-sdk-...
Community
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 votes
Created
October 31, 2006 13:16
Hello Karl,sorry for late response.If you do not have specific lists or trees or smth else to filter of change selection then just keep them empty or return null (you need not null id to represent ...
Community
IntelliJ IDEA Open API and Plugin Development
How to use SearchableConfigurable?
0 votes
Created
May 04, 2007 18:57
Hello Taras, @NotNull public List getPredefinedScopes() { if (myPredifinedScopes == null){ myPredifinedScopes = new ArrayList(); final CustomScopesProvider[] scopesProviders = my...
Community
IntelliJ IDEA Open API and Plugin Development
CustomScopeProvider: is there a way to add/remove scopes dynamically?
0 votes
Created
June 04, 2007 19:02
Hello Taras,I use this code to force a refresh of the available scopes:---DependencyValidationManager scopesHolder =DependencyValidationManager.getInstance(project);scopesHolder.setScopes(new Named...
Community
IntelliJ IDEA Open API and Plugin Development
CustomScopeProvider: is there a way to add/remove scopes dynamically?
0 votes
Created
June 14, 2007 09:12
Hello Mike,You need to add idea.jar to your Idea JDK in order to find com.intellij.packageDependencies.ForwardDependenciesBuilder.Hope it helps.Thank you-Anna KozlovaJetBrains Inc.http://www.intell...
Community
IntelliJ IDEA Open API and Plugin Development
Using DependencyValidationManager to Get Required Classes
0 votes
«
First
‹
Previous
Next
›
Last
»