org.apache.commons.beanutils.priv |
|
Java Source File Name | Type | Comment |
PackageBean.java | Class | This class is designed to test the default access jvm problem workaround. |
PrivateBean.java | Class | Bean that has a private constructor that exposes properties via
various mechanisms (based on property name):
- foo - Via direct public method
- bar - Via directly implemented interface
- baz - Via indirectly implemented interface
author: Craig R. |
PrivateBeanFactory.java | Class | Factory class for PrivateBean instances.
author: Craig R. |
PrivateBeanSubclass.java | Class | Bean that exposes methods defined by an interface that is implemented
in the superclass. |
PrivateDirect.java | Interface | Interface that is directly implemented by PrivateBean.
author: Craig R. |
PrivateIndirect.java | Interface | Interface that is indirectly implemented by PrivateBean.
author: Craig R. |
PublicSubBean.java | Class | This class is designed to test the default access jvm problem workaround. |