I tried to add this following in the code that I add it to my ECLIPSE Environment:
in checkRealEvents function I add the following :
if (sameResult)
{
if (!evtA.result.equals(evtB.result))
{
return false;
}
}
Before that
I add to temporal rule serializable function this variable:
@Element(name="AobjectBsubject")
private boolean sameResult;
In Temporal rule I added this :
this.sameResult= sameResult;
its just a try, i don't know if I missed something, and I am not sure if it will work !
What do you think Dr. Andrew ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I tried to add this following in the code that I add it to my ECLIPSE Environment:
in checkRealEvents function I add the following :
if (sameResult)
{
if (!evtA.result.equals(evtB.result))
{
return false;
}
}
Before that
@Element(name="AobjectBsubject")
private boolean sameResult;
this.sameResult= sameResult;
its just a try, i don't know if I missed something, and I am not sure if it will work !
What do you think Dr. Andrew ?
That sounds like most of what you need to do. The .equals needs to be replaced now that we are using regex. I am working on this change now.
Code changes to support this feature are checked into SVN.
Lubna has tested this and it seems to work.