-
Bug
-
Resolution: Cannot Reproduce
-
Major
-
7.15.0.Final
-
-
NEW
-
NEW
Insert a fact with a boolean field in dtable RHS.
The DRL generated looks like this:
rule "Row 3 The Table" dialect "mvel" when s : Source( age >= 18 , kitten == "Dog" ) then s.setRisk( "ok" ); DroolsUtil fact0 = new DroolsUtil(); fact0.setARuleFired( true ); insert( fact0 ); end
The line
fact0.setARuleFired( true );
does not compile. It should be ( for example ):
fact0.aRuleFired = true;
The above is done by inserting the fact with BRL action, but the same error bothers the "Set the value of field" option.
- is related to
-
DROOLS-4882 [Guided DecisionTable] Incorrect getters and setters for fields that starts with one lowercase letter
- Closed
-
JBPM-6041 Getters and setters are incorrect if the field name starts with one lowercase letter
- Closed
-
RHPAM-412 [Guided DecisionTable] Incorrect getters and setters for fields that starts with one lowercase letter
- Closed