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
February 12, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
My PsiReferenceContributor unintentional prevent renaming of Java methods
1 vote
Created
December 11, 2017 20:39
No, you can only ignore suggestions public -> package local for top level classes. Anna
Community
IntelliJ IDEA EAP Users
Ignore package-scope warnings but not public-->private warnings?
1 vote
Created
December 11, 2017 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'...
Community
IntelliJ IDEA Open API and Plugin Development
Possible to add custom filtering to the unit test output console?
1 vote
Created
November 03, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Psi replace Generics types
1 vote
Created
September 11, 2017 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
Community
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 vote
Created
September 06, 2017 11:57
You need to start IDEA with this VM option, not your test.
Community
IntelliJ IDEA Users
Why can't I input anything from console when i run unit test with JUNIT
1 vote
Created
August 21, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
JUnit Test Listener
1 vote
Created
August 08, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Additional filename validation
1 vote
Created
June 22, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
SDK 2017.1 cannot modify a read-only file using JavaCodeInsightTestFixture
1 vote
Created
April 27, 2017 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...
Community
IntelliJ IDEA Open API and Plugin Development
Apply inspection fix based on class usages
1 vote
«
First
‹
Previous
Next
›
Last
»