01: /*
02: * Project: AMODA - Abstract Modeled Application
03: * Class: de.gulden.framework.amoda.generic.behaviour.GenericRule
04: * Version: snapshot-beautyj-1.1
05: *
06: * Date: 2004-09-29
07: *
08: * This is a snapshot version of the AMODA 0.2 development branch,
09: * it is not released as a seperate version.
10: * For AMODA, see http://amoda.berlios.de/.
11: *
12: * This is licensed under the GNU Lesser General Public License (LGPL)
13: * and comes with NO WARRANTY.
14: *
15: * Author: Jens Gulden
16: * Email: amoda@jensgulden.de
17: */
18:
19: package de.gulden.framework.amoda.generic.behaviour;
20:
21: import de.gulden.framework.amoda.model.behaviour.*;
22: import de.gulden.framework.amoda.model.behaviour.Rule;
23: import java.util.*;
24:
25: /**
26: * Class GenericRule.
27: *
28: * @author Jens Gulden
29: * @version snapshot-beautyj-1.1
30: */
31: public class GenericRule extends GenericCommand implements Rule {
32:
33: // ------------------------------------------------------------------------
34: // --- fields ---
35: // ------------------------------------------------------------------------
36:
37: public Condition condition;
38:
39: public Command command;
40:
41: // ------------------------------------------------------------------------
42: // --- methods ---
43: // ------------------------------------------------------------------------
44:
45: public void perform() {
46: if (getCondition().test() == true) {
47: getCommand().perform();
48: }
49: }
50:
51: public Condition getCondition() {
52: return condition;
53: }
54:
55: public void setCondition(Condition _condition) {
56: condition = _condition;
57: }
58:
59: public Command getCommand() {
60: return command;
61: }
62:
63: public void setCommand(Command _command) {
64: command = _command;
65: }
66:
67: } // end GenericRule
|