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?
asked Aug 15, 2014 at 17:30
razieh babaee
2986 silver badges19 bronze badges
-
Please post code of the "program"Liam– Liam2014年08月15日 17:33:19 +00:00Commented Aug 15, 2014 at 17:33
-
sorry , the question was phrased badly ... I edited it...razieh babaee– razieh babaee2014年08月15日 17:50:29 +00:00Commented Aug 15, 2014 at 17:50
1 Answer 1
You can add an IDebugEventSetListener listener for debug events that will be notified about programs being run / debugged.
DebugPlugin.getDefault().addDebugEventListener(listener);
answered Aug 15, 2014 at 18:26
greg-449
112k235 gold badges112 silver badges165 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
Explore related questions
See similar questions with these tags.
lang-java