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

Getter and Setter not found #230

Closed
jacobhampel opened this issue Dec 11, 2018 · 1 comment
Closed

Getter and Setter not found #230

jacobhampel opened this issue Dec 11, 2018 · 1 comment

Comments

@jacobhampel
Copy link

If the name of a variable has an uppercase letter at the second char, e.g. boolean aBCD, the setter and getter are generated by Eclipse without an uppercase letter at the first letter.
It would be perfect if the POJO-tester would recognize this behavior and finds the getter or setter correctly.
E.g.

private boolean aBCD;
public boolean getaBCD()
{
   return aBCD;
}
public void setaBCD(boolean aBCD)
{
   this.aBCD = aBCD;
}

Currently only this is recognized by the POJO-tester:

private boolean aBCD;
public boolean getABCD()
{
   return aBCD;
}
public void setABCD(boolean aBCD)
{
   this.aBCD = aBCD;
}
@jacobhampel
Copy link
Author

Duplicate issue #225. Closing this issue

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

1 participant