Todd Heidenthal
Long time Java developer, looking to get into writing plugins for IntelliJ
- 活动总数 34
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 9
-
创建于 PersistentStateComponent is inconsistent
已回答I have implemented the PersistentStateComponent in my plugin. However, it doesn't always write the data to the disk. I have been using intellj-community as a test bed and find that executing cod... -
创建于 InspectionProfileImpl#initInspectionTools is marked for removal. What to use instead?
已回答During development of my plugin I discovered that I needed to call the method InspectionProfileImpl#initInspectionTools to get correct functionality. There are no annotations on the method, so I w... -
创建于 Compile task is not triggering
已回答I have created an CompileTask extension in my project. It is registered as an extension in the project plugin.xml (and the plug icon appears in the IDE). However, the execute method is never trig... -
创建于 How to determine when code analysis is complete for a specific project?
已计划Hello,I am invoking CodeInspectionAction#analyze after promoting it's visibility with a wrapper class. This is so that I don't need to access the internal API of GlobalInspectionContextImpl . I h... -
创建于 What to use other than GlobalInspectionContextImpl?
已回答GlobalInspectionContextImpl has been annotated as ApiStatus.Internal, which in turn results in use during plugin development to show warnings indicating that the class and references to it and its ... -
创建于 Need help with Setting layout
已回答Hello, I have been developing some settings for my plugin and have been following the Settings Tutorial. However, I can't get the layout the way I want using the FormBuilder. I have also tried us... -
已编辑于 CompileContext#addMessage doesn't honor line and column
已回答Hello, I am writing a CompileTask plugin. I have performed all the analysis that I desired and now want to output information to the Build view. I have found that I can use CompileTask#addMessage... -
创建于 How to programmatically determine new and modified files via plugin?
已回答Hello, I need to get the set of new and modified source files in a project. I looked into IdeDocumentHistory and ChangeList* as well as many other classes. I don't get the files I expect from t... -
已编辑于 How to programmatically determine inspection results for a source file via plugin?
Hello, I would like to be able to get the inspection results for a group of source files from within my plugin. I have tried looking in many of the *Inspection*, *Inspections*, *Problem*, and *Resu...