[jira] Closed: (JDO-109) Need better information about why two object graphs did not compare equal

2006-04-22 Thread Michael Bouschen (JIRA)
[ http://issues.apache.org/jira/browse/JDO-109?page=all ] Michael Bouschen closed JDO-109: Fix Version: JDO 2 beta Resolution: Fixed > Need better information about why two object graphs did not compare eq

[jira] Reopened: (JDO-109) Need better information about why two object graphs did not compare equal

2006-04-22 Thread Michael Bouschen (JIRA)
[ http://issues.apache.org/jira/browse/JDO-109?page=all ] Michael Bouschen reopened JDO-109: -- > Need better information about why two object graphs did not compare eq

Re: JDO-109

2005-08-15 Thread Michael Bouschen
Hi Craig, hi Karan, my $0.02: I like the idea of adding a new parameter to the EqualityHelper.equals method specifying the instance and the field being compared. The EqualityHelper could manage a list of differences. The list is updated each time EqualityHelper.equals returns false. A new me

Re: JDO-109

2005-08-13 Thread Karan Malhi
Hi Craig, Got it. Very nicely explained. Thanks On 8/13/05, Craig Russell <[EMAIL PROTECTED]> wrote: > > Hi, > > So here's the deepEquals method for Address, updated from: > > public boolean deepCompareFields(DeepEquality other, > EqualityHelper helper) { > Address otherAddress = (Address)ot

Re: JDO-109

2005-08-13 Thread Craig Russell
Hi, So here's the deepEquals method for Address, updated from: public boolean deepCompareFields(DeepEquality other, EqualityHelper helper) { Address otherAddress = (Address)other; return (addrid == otherAddress.addrid) && helpe