Galen Dunkleberger
Galen Dunkleberger
I would like to use your library to cut out a large amount of boilerplate code on my domain model objects. Those objects have domain specific equality rules. I'm looking...
Lombok is nice but not really what I was looking for. Elimination of boilerplate is only half the reason I was looking at dynamic-object. I've been building my domain model...
I'm not sure if this was what you had in mind but I removed the `Equality` interface and `instanceof` checks in the `DynamiceObjectInstance.equals` and `DynamiceObjectInstance.hashCode` functions. Instead I added a...