01: package org.drools.brms.client.modeldriven.brl;
02:
03: /**
04: * This is used when asserting a new fact.
05: * @author Michael Neale
06: *
07: */
08: public class ActionInsertFact extends ActionFieldList {
09:
10: public String factType;
11:
12: public ActionInsertFact(final String type) {
13: this .factType = type;
14: }
15:
16: public ActionInsertFact() {
17: }
18:
19: }
|