主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2016年05月18日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
How do I get Java specific semantic information about a code token when context clicked?
0 票
创建于
2016年03月29日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Comparing two PsiMethods
0 票
创建于
2016年01月25日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 票
创建于
2016年03月29日 11:10
How do know what method to add? Where do you get the correct signature?
社区
IntelliJ IDEA Open API and Plugin Development
Comparing two PsiMethods
0 票
创建于
2016年02月02日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 票
创建于
2016年02月03日 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-...
社区
IntelliJ IDEA Open API and Plugin Development
How to get all variables within a PsiClass (global and local variables)
0 票
创建于
2006年10月31日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
How to use SearchableConfigurable?
0 票
创建于
2007年05月04日 18:57
Hello Taras, @NotNull public List getPredefinedScopes() { if (myPredifinedScopes == null){ myPredifinedScopes = new ArrayList(); final CustomScopesProvider[] scopesProviders = my...
社区
IntelliJ IDEA Open API and Plugin Development
CustomScopeProvider: is there a way to add/remove scopes dynamically?
0 票
创建于
2007年06月04日 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...
社区
IntelliJ IDEA Open API and Plugin Development
CustomScopeProvider: is there a way to add/remove scopes dynamically?
0 票
创建于
2007年06月14日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Using DependencyValidationManager to Get Required Classes
0 票
«
第一页
‹
上一页
下一页
›
最后
»