The default generated hashCode and equals implementations are ugly at best.
Is it possible to make eclipse generate ones from HashCodeBuilder and EqualsBuilder, and perhaps even a toString with ToStringBuilder?
|
2
|
|
|
|
|
|
Take a look at Commons4E It hasn't been updated in a while, but then I don't guess it needs to change much? Update: Just checked against 3.4.1 and it works fine. |
|||
|
|
|
|
You can do that with Code Templates in Eclipse. Here's a solution that I found with examples of HashCodeBuilder and EqualsBuilder. Template EqualsBuilder:
Template HashCodeBuilder:
|
||||||||
|
|
|
I use the Eclipse plugin called "Commonclipse" After installation, you see a new context menu item "commonclipse" when you right click within a java source file. It can generate equals, hashcode, toString and compareTo methods based on the Apache commons libraries. To install it, use this from within eclipse update: http://commonclipse.sourceforge.net |
||
|
|