Todd Heidenthal
Long time Java developer, looking to get into writing plugins for IntelliJ
- Total activity 34
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 9
-
Created PersistentStateComponent is inconsistent
AnsweredI 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... -
Created InspectionProfileImpl#initInspectionTools is marked for removal. What to use instead?
AnsweredDuring 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... -
Created Compile task is not triggering
AnsweredI 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... -
Created How to determine when code analysis is complete for a specific project?
PlannedHello,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... -
Created What to use other than GlobalInspectionContextImpl?
AnsweredGlobalInspectionContextImpl 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 ... -
Created Need help with Setting layout
AnsweredHello, 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... -
Edited CompileContext#addMessage doesn't honor line and column
AnsweredHello, 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... -
Created How to programmatically determine new and modified files via plugin?
AnsweredHello, 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... -
Edited 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...