[ 
https://issues.apache.org/jira/browse/BEANUTILS-265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Henri Yandell updated BEANUTILS-265:
------------------------------------

    Fix Version/s: LATER THAN 1.8.0

> Allow access to public methods from not public classes
> ------------------------------------------------------
>
>                 Key: BEANUTILS-265
>                 URL: https://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
>             Fix For: LATER THAN 1.8.0
>
>         Attachments: beanutils.txt
>
>
> 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.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to