vote up 4 vote down star
2

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?

flag

3 Answers

vote up 4 vote down check

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.

link|flag
vote up 3 vote down

You can do that with Code Templates in Eclipse.

Here's a solution that I found with examples of HashCodeBuilder and EqualsBuilder.

Template EqualsBuilder:

    public boolean equals(Object o) {
        boolean result = false;

        if (this == o) {
            result = true;
        } else if (o instanceof $CLASSNAME$) {
            $CLASSNAME$ other = ($CLASSNAME$) o;

            result = new org.apache.commons.lang.builder.EqualsBuilder()
                    .append($END$
                    .isEquals();
        }

        return result;
    }

Template HashCodeBuilder:

    public int hashCode() {
        return new org.apache.commons.lang.builder.HashCodeBuilder()
                .append( $END$ )
                .toHashCode();
    }
link|flag
Which code template is that for eclipse, or how do I make a new one? – daveb Nov 11 '08 at 15:35
Please see this post about code templates (existing and new ones): eclipse.dzone.com/news/… – bruno conde Nov 11 '08 at 15:56
Ande, your right about the existing primes ... – bruno conde Nov 11 '08 at 15:59
$CLASSNAME$ no longer works as of eclipse 3.4; the new variable is ${enclosing_type}. other $..$ should be replaces as well. – gsmd Jan 26 '09 at 1:05
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.