Prop

- Total activity 87
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 32
-
Created Is JNA available in all IDEA versions?
AnsweredI found that the idea includes a jna dependency, and I want to use it. I am not sure if the jna dependency is included in all versions of the idea. -
Created How to display big data in EditorTextField without lagging
AnsweredI use EditorTextField to store user values. When a large text is passed in through setText, idea will become unresponsive.How can I optimize? -
Created How to refresh the EditorTextField ui
AnsweredThis is my code @Override public void createToolWindowContent(@NotNull Project project, @NotNull com.intellij.openapi.wm.ToolWindow toolWindow) { EditorTextField requestUrlTextField... -
Created EditorTextField layout is abnormal after switching themes
AnsweredI found this article, https://intellij-support.jetbrains.com/hc/en-us/community/posts/10164279358738-EditorTextFiled-Display-exception, I did it like this, but it had no effectthis is my code.publi... -
Created AnimatedIcon doesn't work inside a DefaultMutableTreeNode
AnsweredI found it `https://intellij-support.jetbrains.com/hc/en-us/community/posts/11525525651474-AnimatedIcon-doesn-t-work-inside-a-DefaultMutableTreeNode This article`, but it's not what I want. I want ... -
Created I want to use code to locate the cursor at the specified dependency position in POM. Is there a relevant API
Answeredfun navigation(groupId:String,artifactId:String){ } navigation("com.github.ngoanh2n","commons")Similar to PsiMethod.navigate(true) -
Edited How to get the dependency tree of gradle project
AnsweredI found a post https://intellij-support.jetbrains.com/hc/en-us/community/posts/360006872339-Get-Gradle-project-information-in-plugin But I can't get through MODULE_DEPENDENCY and LIBRARY_DEPENDEN... -
-
-
Edited FileEditor memory leak
AnsweredI implemented FileEditorProvider, and the page returned an EditorTextField. Here is my code. When I closed the idea, an error occurredpublic class HTTPEditor implements FileEditor { private fin...