A long-standing problem (I'll list a few existing issues outlining these) is that if the logical property (and matching field):
then there are no possible "getter"/"setter" methods from which property could be derived.
So there is either mismatch or duplication of properties because following won't match:
public class IPhoneBean {
private String iPhone;
// These infer property "iphone" as leading capitals are lower-cased
public String getIPhone() { return iPhone; }
public void setIPhone(String value) { iPhone = value; }
}
same would happen if field name starts with capital letter(s).
A long-standing problem (I'll list a few existing issues outlining these) is that if the logical property (and matching field):
"Phone") OR"iPhone")then there are no possible "getter"/"setter" methods from which property could be derived.
So there is either mismatch or duplication of properties because following won't match:
same would happen if field name starts with capital letter(s).
Existing issues:
"oAuth")dLogHeader)Â #2835 ("dLogHeader")"mValue")