主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2018年02月12日 16:20
You need to implement com.intellij.psi.PsiReference#handleElementRename or register com.intellij.psi.ElementManipulator (see com.intellij.psi.impl.source.resolve.reference.impl.manipulators.XmlAttr...
社区
IntelliJ IDEA Open API and Plugin Development
My PsiReferenceContributor unintentional prevent renaming of Java methods
1 票
创建于
2017年12月11日 20:39
No, you can only ignore suggestions public -> package local for top level classes. Anna
社区
IntelliJ IDEA EAP Users
Ignore package-scope warnings but not public-->private warnings?
1 票
创建于
2017年12月11日 15:08
I am not especially familiar with the api but looks like you may also try `com.intellij.execution.actions.ConsoleActionsPostProcessor#postProcess`. There you'll have console in the context and you'...
社区
IntelliJ IDEA Open API and Plugin Development
Possible to add custom filtering to the unit test output console?
1 票
创建于
2017年11月03日 09:12
I oversee the problem with your visitor, sorry: it should call for super. if you call ```super.visitReferenceElement(reference)```, visitor would drill inside generics. BTW If you do PsiJavaCodeRef...
社区
IntelliJ IDEA Open API and Plugin Development
Psi replace Generics types
1 票
创建于
2017年09月11日 08:24
Hi Scott, java introduce variable actually contains the type chooser (if you press Shift-Tab you'll get to the type declaration). Is it what you want to get? Anna
社区
IntelliJ IDEA Open API and Plugin Development
How I can let the user choose from a set of valid types in an introduce refactoring?
1 票
创建于
2017年09月06日 11:57
You need to start IDEA with this VM option, not your test.
社区
IntelliJ IDEA Users
Why can't I input anything from console when i run unit test with JUNIT
1 票
创建于
2017年08月21日 11:35
If you want your listener to work in test's VM, you need to register com.intellij.rt.execution.junit.IDEAJUnitListener extension point. Then you would need to ensure that the information you gather...
社区
IntelliJ IDEA Open API and Plugin Development
JUnit Test Listener
1 票
创建于
2017年08月08日 10:20
You would need to extend rename & move refactorings to ensure that after creation nobody changed the names. Moreover you would probably need to listen to external changes as people sometimes rename...
社区
IntelliJ IDEA Open API and Plugin Development
Additional filename validation
1 票
创建于
2017年06月22日 12:25
Hi Andres, you need to check read-only status first before performing modifications, otherwise IDEA would throw exceptions on files, locked by file system or by some version control system (e.g. Pe...
社区
IntelliJ IDEA Open API and Plugin Development
SDK 2017.1 cannot modify a read-only file using JavaCodeInsightTestFixture
1 票
创建于
2017年04月27日 14:34
Hi Vit, your fix looks like a refactoring, so you can first implement BaseRefactoringProcessor and then call it in your fix. BaseRefactoringProcessor would care about progress to show when you sear...
社区
IntelliJ IDEA Open API and Plugin Development
Apply inspection fix based on class usages
1 票
«
第一页
‹
上一页
下一页
›
最后
»