01: package org.drools.brms.client.modeldriven.brl;
02:
03: /**
04: * Basically the same as setting fields, EXCEPT that
05: * it will notify the engine of the changes.
06: * This only applies to bound fact variables from the LHS.
07: *
08: * @author Michael Neale
09: */
10: public class ActionUpdateField extends ActionSetField {
11:
12: public ActionUpdateField(final String itemText) {
13: super (itemText);
14: }
15:
16: public ActionUpdateField() {
17: super();
18: }
19:
20: }
|