is there some way to terminate all (Java) applications launched with Eclipse at once?
Asked
Active
Viewed 2.0k times
1 Answers
54
Open the debug view, select all, and click the big red box (or right-click and select "Terminate").

Jonathan Feinberg
- 44,698
- 7
- 80
- 103
-
6or Teminate/Discomnect All – mmmmmm Oct 29 '09 at 16:26
-
Oh yes, didn't think debug view. Thanks =) – Touko Oct 30 '09 at 07:23
-
1I forgot to put `setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);` on a `JFrame`. It took a stunning 2 minutes to close all of the 200 instances I had made so far, even with this method. – Zyl Jul 06 '18 at 14:08