On 04/04/2012, Dennis Lupiana <Dennis.Lupiana(a)dit.ie> wrote:
Please help.
-----------
I have inserted four objects of the same type in the working memory using
array.
There's no point in inserting an array Person[]. Insert Person objects.
I want to write a rule which will be activated when certain values
in
the objects are met. Let say my object is Person and it has a username field
with values John, Peter, Jane and Judy for each object. I want to write a
rule that will be activated when username is Peter and Jane.
One name can only have one value. Do you mean "when there is one
Person with username "Peter" and another Person "Jane"?
when
Person( username == "Peter" )
Person( username == "Jane" )
then
...
Thanks
--------