Christian Schulze
- Total activity 41
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 10
-
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 -
Created How can I access the IDEA Settings?
Hello, is it possible to access the Settings of the IDE? I want to get the FileHeader from File and Code Templates. regards Chris -
Created How can I edit the comment of a Class in a PsiJavaFile?
Hello, is it possible to edit the comment of a Java Class with the PsiJavaFile? regards Chris -
Edited How to get all Java-Files from a Project without the java files from the dependencies
Hello, I try to get all java Files from the project. I tried this: FileBasedIndex.getInstance().getContainingFiles( FileTypeIndex.NAME, JavaFileType.INSTANCE, GlobalSearchScope.allSc...