Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.7.0
-
None
Description
Currently BeanUtils doesn't provide the possibility to access getters and setters in classes who are package-scoped!
--------------8<--------------
class HiddenBean {
private String a;
protected HiddenBean() {
}
public void setA(String a)
{ this.a = a; }public String getA()
{ return this.a; }}
public class PublicBean extends HiddenBean {
}
--------------8<--------------
Attachments
Attachments
Issue Links
- is duplicated by
-
BEANUTILS-316 getAccessibleMethod returns null when method is declared in a package-private class but used through a bublic subclass
- Closed