Details
-
Bug
-
Status: Open
-
Critical
-
Resolution: Unresolved
-
1.8.3
-
None
Description
I did a test using a internal private class to get the value of the fields. Sample:
public class Master {
private class Internal {
private String field;
public String getField()
{ return field; }public void setField(String field) {
this.field = field;
}
}
}
When I try: PropertyUtils.getProperty(myInternalInstance, "field") I got an exception about "field not found".