Christian Schulze
- 活动总数 41
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 4
- 订阅数 10
-
创建于 Access Repository Informations for PsjFiles
已回答Hello, 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 -
创建于 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 -
创建于 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 ... -
创建于 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 -
创建于 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... -
创建于 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... -
创建于 Best Practice to save a psifile?
已回答Hello, 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 -
创建于 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 -
创建于 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 -
已编辑于 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...