Christian Schulze
- Total activity 41
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 10
-
Created How to use JS PsiFiles in my plugin?
Hello, I want to use the PsiFiles for Javascript in my own plugin. But I develop with the community Edition. I read this Post https://intellij-support.jetbrains.com/hc/en-us/community/posts/2067624... -
Created How to remove my Toolwindow programmatically from sidebar
Hello, is it possible to remove a Toolwindow programmatically from the sidebar? -
Created Get I18n Properties from Intellij Resource Bundle
Hello, I want to add localization to my plugin. Can I access the resource bundle within Intellij and how can I do this? -
Created Access Repository Informations for PsjFiles
AnsweredHello, I want to access the Annotations from a GIt or SVN to a PsiFiles? Is this possible and how can I do this? regards Chris -
Created Intellij Icons
Hello, I try to make a plugin and need Icons for Buttons and other stuff. Are their Icons that are bundled with the SDK which I can use? and is this allowed (copyright)? regards Chris -
Created ToolWindow Layout best practice?
Hello, I want to add some Content to my ToolWindow inside my Plugin. I want to start with a layout. I know that it is Java Swing, so can I use the normal Layout Gird, Flow or something else? Or is ... -
Created Is it possible to open the settings menu of the IDE programaticly and jump to a specific Point?
Hello, I want to open the Settings Menu from the IDE programaticaly and jump to a specific point. Is this even possible and when how? regards Chris -
Created How to create a panel (something like the Inspection Results)
Hello, I want to create a panel for my plugin, something like the Inspection Results. Is there a tutorial or an example how to create something like this? I also need the TreeView and Buttons as sh... -
Created How to add a Comment to a PsiJavaFile
Hello, I want to add a PsiDocComment to a PsiClass. I tried this: PsiDocComment docComment = psiClass.getDocComment();if(docComment == null){ PsiDocComment docCommentFromText = JavaPsiFacade.get... -
Created Best Practice to save a psifile?
AnsweredHello, I have a PsiJavaFile and change something at it, and now I want to save or write to disk the changes. How can I do this in a correct way? regards Chris