01: package org.drools.brms.client.modeldriven.brl;
02:
03: /**
04: * For setting a field on a bound LHS variable or a global.
05: * If setting a field on a fact bound variable, this will
06: * NOT notify the engine of any changes (unless done outside of the engine).
07: *
08: * @author Michael Neale
09: */
10: public class ActionSetField extends ActionFieldList {
11:
12: public ActionSetField(final String var) {
13: this .variable = var;
14: }
15:
16: public ActionSetField() {
17: }
18:
19: public String variable;
20:
21: }
|