I have to write a common utility class that does following:
Input: 2 objects of the same class - old and new
Output: 1 object of the same class as Inputs, with only the fields that change - delta
Not sure if there is any existing framework out there. I would prefer to use Scala, but even Java is ok.
class Person (val age: Int, val name: String, val children: List[Person]), would that mean to step into the list of children, and only report different children (deep diff), or would we do a flat diff, and just report a different list? Second question: Given a diffPerson between Person a and b, where b has no children. The diffPerson will have no Children too, no matter what Person a has. Is that intendet? – user unknown Dec 13 '11 at 5:31