You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Niall Pemberton (JIRA)" <ji...@apache.org> on 2008/08/20 04:06:44 UTC

[jira] Updated: (BEANUTILS-265) Allow access to non public class's public methods from a public sub-classes

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

Niall Pemberton updated BEANUTILS-265:
--------------------------------------

    Fix Version/s:     (was: LATER THAN 1.8.0)
                   1.8.0
         Assignee: Niall Pemberton
          Summary: Allow access to non public class's public methods from a public sub-classes  (was: Allow access to public methods from not public classes)

> Allow access to non public class's public methods from a public sub-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
>            Assignee: Niall Pemberton
>             Fix For: 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.