Right now, hibernate determines a matching getter and setters by matching methods that start with "get" and "set" or "is" and "set". But the spec says that "is" should only be considered when the type is little boolean.
Hibernate should fail validation in this case because it doesn't match the spec:
{code} public Boolean isVariable()
public Boolean setVariable()
{code}
because in this case "is" should be "get" since it is not a little boolean.
|