01: /*
02: * Created on Jun 19, 2004
03: */
04: package net.charabia.jsmoothgen.application.swtgui;
05:
06: public class ExitAction extends JSmoothAction {
07:
08: public ExitAction(JSmoothApplication js) {
09: super (js);
10: }
11:
12: public boolean run() {
13: System.out.println("[DEBUG] Bye");
14: getApplication().exit();
15: return true;
16: }
17: }
|