razieh babaee
razieh babaee

Reputation: 298

eclipse plugin, run some method after running the program

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

Answers (1)

greg-449
greg-449

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

Related Questions