01: /*
02: * Created on Jun 12, 2004
03: */
04: package net.charabia.jsmoothgen.application.swtgui;
05:
06: /**
07: * @author Dumon
08: */
09: public abstract class JSmoothAction {
10: private JSmoothApplication js;
11:
12: public JSmoothAction(JSmoothApplication js) {
13: this .js = js;
14: }
15:
16: protected JSmoothApplication getApplication() {
17: return js;
18: }
19:
20: public abstract boolean run();
21: }
|