454455456457458459460461462463464
while (!parent.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); System.exit(0); } /**
9293949596979899100101102
// the OpenWorkspaceAction sets the PROP_EXIT_CODE before the restart return EXIT_RELAUNCH.equals(Integer.getInteger(PROP_EXIT_CODE)) ? EXIT_RELAUNCH : EXIT_RESTART; } finally { display.dispose(); } } public void stop() { }
78798081828384858687
s.open(); while(!s.isDisposed()) { if(!d.readAndDispatch()) d.sleep(); } d.dispose(); System.exit(0); } }
5051525354555657585960
return IPlatformRunnable.EXIT_RESTART; } return IPlatformRunnable.EXIT_OK; } finally { display.dispose(); } } static Shell getActiveShell() {
899091929394959697
shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
9192939495969798
while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
41424344454647484950
if(!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
5051525354555657
4445464748495051
6667686970717273
shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } image.dispose(); display.dispose (); } }