01: package org.drools.brms.client.modeldriven.brl;
02:
03: /**
04: * Logical assertions are used as part of "truth maintenance".
05: *
06: * @author Michael Neale
07: */
08: public class ActionInsertLogicalFact extends ActionInsertFact {
09:
10: public ActionInsertLogicalFact(final String fact) {
11: super (fact);
12: }
13:
14: public ActionInsertLogicalFact() {
15: super();
16: }
17:
18: }
|