Make Eclipse generate boolean getters with get not is

By default, Eclipse generates boolean getters with the "is" prefix, i.e.

    private boolean value
    
    public boolean isValue() {
        return value;
    }

There is a way to disable this. Go to Window > Preferences > Java > Code Style and uncheck the "Use 'is' prefix for getters that return boolean" checkbox.

While you're at it, you can also uncheck "Add '@Override' annotation for new overriding methods", since that's annoying too.

EclipseBooleanGetters (last edited 2010-05-28 19:16:33 by KennethPronovici)