Reputation: 298
I am writing an eclipse plugin , and I want to show a message after the user has successfully run the code that he has written in the active editor page. how should I know when the user runs his code?
Upvotes: 0
Views: 94
Reputation: 111142
You can add an IDebugEventSetListener
listener for debug events that will be notified about programs being run / debugged.
DebugPlugin.getDefault().addDebugEventListener(listener);
Upvotes: 1