01: package org.drools.brms.client.modeldriven.brl;
02:
03: /**
04: * This is used to specify that the bound fact should be retracted
05: * when the rule fires.
06: * @author Michael Neale
07: *
08: */
09: public class ActionRetractFact implements IAction {
10:
11: public ActionRetractFact() {
12: }
13:
14: public ActionRetractFact(final String var) {
15: this .variableName = var;
16: }
17:
18: public String variableName;
19:
20: }
|