Henry Peterson
I am a passionate programmer and a clean code evangelist who mainly likes to create Android apps and contribute to open source libraries. https://thsaravana.github.io/
- Total activity 174
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 53
- Subscriptions 45
-
Created Hook into VcsHistoryProvider of existing VCS plugins
So I use GitHub VCS plugin. When I right click on any file and click 'show history', it opens up the 'History' panel in the 'Version Control' toolwindow. Here there are multiple rows, each of which... -
Created Manipulating Background task queue
I have a JList in my toolwindow and when I click on each row, a background process is run and on completion another part of my toolwindow is populated with the content. I am using ProgressManager.g... -
Created Icon not shown for Action in ActionToolbar of ToolWindow
I created a DefaultActionGroup and added an Action to it. Using that I created the ActionToolbar for my ToolWindow. Now the thing is, for my Action, I have declared the icon in the <action /> tag i... -
Created Showing custom usage results (ReferenceSearch) in Find toolwindow
I was trying to customize Find Usages to suit my needs. I used ReferenceSearch to find all the usages. But then I wanted to show these usages in the Find toolwindow. I searched a bit and couldn't f... -
Created Graphing for CE - Eclipse GEF / JavaFX
I am kind of giving up on mxGraph. It need lots of work done. Thought of using Eclipse GEF. It says I can create standalone applications using that. Then I should definitly be able to wrap it up in... -
Created Dialog to show logs from console
Hi, I am looking for how to show logs from console into a dialog.My Objective: I have a backgroud task running (Its Runtime.getRuntime().exec() ,i.e, invoking terminal command), and I get the outpu... -
Created Notification Balloon not shown, weird scenario
AnsweredHey, I am not getting the notification balloon, but I get the Event Logs. Below is the code of the Action class.void actionPerformed(AnActionEvent e) { Notifications.Bus.register(GROUP_NOTI... -
Created ReferencesSearch findAll() returns Empty Collection
I have the following java class.public class Sample { public static void main(String[] args) { String name = "TEXT"; Trial trial = new Trial(); trial.someMethod(); ... -
Created Remembering Dialog dimensions (Size and location)
DialogWrapper has the feature to persist or remember the dimensions of the dialog. So that when the dialog is closed, and opened the next time, the previous location and size is remembered. This do... -
Created Vertices and Edges (Cells) not movable by default in JGraph inside Intellij IDEA dialog
I just started using JGraph (mxGraph) for Java for visualization of data models. The Hello World example provided with the JGraph download works perfectly when run on its own as a Java Application....