org.drools.brms.client.modeldriven.brl |
This package holds classes that are used as RPC classes for the rule modeller,
as well as the DOM for the BRL rule format that the rule modeller uses.
IMPORTANT:
Do not change these unless you are adding fields or removing fields, not refactoring
fields. Especially if there is existing data. XSLT may need to be used to massage
the existing XML to suit the new structure.
|
Java Source File Name | Type | Comment |
ActionFieldList.java | Class | This class is the parent for field setting or assertion actions. |
ActionFieldValue.java | Class | Holds field and value for "action" parts of the rule. |
ActionInsertFact.java | Class | This is used when asserting a new fact. |
ActionInsertLogicalFact.java | Class | Logical assertions are used as part of "truth maintenance". |
ActionRetractFact.java | Class | This is used to specify that the bound fact should be retracted
when the rule fires. |
ActionSetField.java | Class | For setting a field on a bound LHS variable or a global. |
ActionUpdateField.java | Class | Basically the same as setting fields, EXCEPT that
it will notify the engine of the changes. |
CompositeFactPattern.java | Class | Represents first order logic like Or, Not, Exists. |
CompositeFieldConstraint.java | Class | This is a field constraint that may span multiple fields. |
ConnectiveConstraint.java | Class | This is for a connective constraint that adds more options to a field constraint. |
DSLSentence.java | Class | This represents a DSL sentence. |
FactPattern.java | Class | A fact pattern is a declaration of a fact type, and its constraint,
and perhaps a variable that is it bound to
It is the equivalent of a "pattern" in drools terms. |
FieldConstraint.java | Interface | This is the top level interface for all field constraints.
These may be composites. |
IAction.java | Interface | |
IPattern.java | Interface | |
ISingleFieldConstraint.java | Class | Represents a constraint, which may be part of a direct field constraint or a connective. |
PortableObject.java | Interface | This interface means the object will be squirted over the wire to the GWT client. |
RuleAttribute.java | Class | This holds values for rule attributes (eg salience, agenda-group etc). |
RuleModel.java | Class | |
SingleFieldConstraint.java | Class | This represents a contraint on a fact - involving a SINGLE FIELD. |