sta-szek/pojo-tester

Getter and Setter not found

jacobhampel opened this issue · 1 comments

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;
}

Duplicate issue #225. Closing this issue