Allow access to public methods from not public classes
------------------------------------------------------
Key: BEANUTILS-265
URL: http://issues.apache.org/jira/browse/BEANUTILS-265
Project: Commons BeanUtils
Issue Type: New Feature
Components: Bean / Property Utils
Affects Versions: 1.7.0
Reporter: Tom Schindl
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<---------------
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]