Hey, I have a java object that has an 'end' property (i.e. supports setEnd(long end) and getEnd() methods).
When I write the following rule,
rule "I can't use 'end' here"
when
$qo : QueryObject(end > 0)
then
...
End
I get an error. I had to re-write my object to change the 'end' property to
endTime to get things to work.
Is this a DRL syntax problem, or is there a way I can use an 'end' property
without confusing the parser?
Thanks.
-Mitch
