Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

generate hasFOO() for boolean fields named 'hasFOO' instead of 'isHasFOO' #77

Closed
lombokissues opened this issue Jul 14, 2015 · 9 comments
Assignees

Comments

@lombokissues
Copy link

Migrated from Google Code (issue 4)

@lombokissues
Copy link
Author

👤 reinierz   🕗 Jul 24, 2009 at 04:17 UTC

What steps will reproduce the problem?

  1. Create a class with a field named 'hasX', typed 'boolean'.
  2. Put a @ Data annotation on it.
  3. Get annoyed by the 'isHasX()' name. 'hasX()' is most likely far more appropriate.

Fix: If boolean field and the field name starts with 'has', use the field name as method name.

@lombokissues
Copy link
Author

👤 r.spilker   🕗 Jul 24, 2009 at 11:04 UTC

Also, we might want to check if any of the is/has/get methods exists befor creating
one.

@lombokissues
Copy link
Author

👤 r.spilker   🕗 Jul 25, 2009 at 21:10 UTC

If the field starts with "is" we don't want to prepend another "is". We need to make
sure that "is" or "has" is not the start of a longer word. So the next character has to
be title case. This ensures that a boolean field called hashCodeCalculated would get a
getter named isHashCodeCalculated instead of hasHCodeCalculated.

@lombokissues
Copy link
Author

👤 reinierz   🕗 Jul 26, 2009 at 07:19 UTC

Implemented all suggested changes in commit a9d2989.

NB: Roel, I haven't tested all borderline cases on this one!

@lombokissues
Copy link
Author

👤 reinierz   🕗 Jul 26, 2009 at 07:30 UTC

Test ﹟1: Make boolean fields named 'isFoo', 'getBar', 'hasBaz' and 'hashFlooble'. This must generate methods
'isFoo(), hasBaz, getBar, and isHashFlooble.

On eclipse: Correct on all counts.

On javac: Correct on all counts.

Test ﹟2: Make boolean fields named 'isFoo', 'bar'. Then make methods named 'hasFoo', and 'getBar', and make
sure that neither field gets an auto-generated getter, and that both fields get a warning that no getter is
being made, with the alternate name stated in the warning message.

on eclipse: correct on all counts.

on javac: correct on all counts.

Thus, I'm verifying the change.

@lombokissues
Copy link
Author

End of migration

@Ghedeon
Copy link

Ghedeon commented May 18, 2017

Sorry, I see that it's an old thread, but do I miss something or was it reverted? Because it generates isHasFoo() for the field named hasFoo in v1.16.16.

@Maaartinus
Copy link
Contributor

@Ghedeon IIRC this has indeed been reverted. It makes the names sound better, but it's another "prefix-shedding", incompatible with javabeans and not very systematic. There (at least) following possibilities:

  • javabeans compatible
  • no prefix
  • always get/set (never "is")

@bmmpt
Copy link

bmmpt commented May 25, 2017

Why not give the developer the ability so set the exact getter/setter name they what to use?

For instance I have a Boolean getter I would like to call canAdd... rather than isAdd or hadAdd.

Something like the following would be nice:

@Getter(name="canAdd")
@Setter(name="setCanAdd")
private Boolean thisNameDoesNotMatter;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants