Close Eclipse Application Programmatically
Posted
by Mario Ortegón
on Stack Overflow
See other posts from Stack Overflow
or by Mario Ortegón
Published on 2010-05-11T09:49:48Z
Indexed on
2010/05/11
10:54 UTC
Read the original article
Hit count: 221
java
|eclipse-rcp
I have an Eclipse Application that I want to close. The catch is that it is a headless application, so I can not use the following method:
PlatformUI.getWorkbench().close();
What alternative can I use to close the application cleanly?
© Stack Overflow or respective owner