01: package org.drools.brms.client.modeldriven.brl;
02:
03: /**
04: * This is for a connective constraint that adds more options to a field constraint.
05: * @author Michael Neale
06: */
07: public class ConnectiveConstraint extends ISingleFieldConstraint {
08:
09: public ConnectiveConstraint() {
10: }
11:
12: public ConnectiveConstraint(final String opr, final String val) {
13: this .operator = opr;
14: this .value = val;
15: }
16:
17: public String operator;
18:
19: }
|