Yasins5896

- Total activity 35
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 12
- Subscriptions 7
-
Created AnnotationUtil for Kotlin?
AnsweredHello!There is a Util-Class com.intellij.codeinsight.AnnoationUtil which has useful functions like getting annotation parameter values etc. from a PsiAnnotation.I would like to know if there is an ... -
Created myFixture does not have ToolWindows
AnsweredHello!When I try to run this code:String[] toolWindowIDs = ToolWindowManager.getInstance(myFixture.getProject()).getToolWindowIds();the array toolWindowIDs is empty, indicating that there are no to... -
Created Unit Testing Custom Toolwindow
AnsweredHello!I have created a custom toolwindow using the ToolWindowFactory and I couldn't find any documentation on how to Unit Test a toolwindow. Should I test the functionality/ the UI/ … and how shoul... -
Created Use Spring Service in Plugin
AnsweredHello!I would like to know if you can dependency inject services into a custom IntelliJ Plugin.Thank you! -
Edited How to write a Unit Test for Quick Documentation?
AnsweredHello!I have implemented a documentation provider and found this official link on how to test this feature:https://plugins.jetbrains.com/docs/intellij/documentation-test.htmlbut sadly the Documenta... -
Created How to safely access the textual presentation of an InlayHint?
AnsweredHello!I am currently developing a plugin and need to get acces to the text inside a DeclarativeInlayHint.I have found a solution (see the code below) BUT the class InlayDumpUtil as well as InlayPre... -
Created Is it possilbe to add a custom dialog for Moving Files?
AnsweredI am developing my own plugin and when I try to move a file, a dialog pops up. Sometimes, the checkbox "Search for references" is deselected and I would like to have it selected every time a user o...