Package org.apache.cayenne.reflect
Class BeanAccessor
java.lang.Object
org.apache.cayenne.reflect.BeanAccessor
- All Implemented Interfaces:
Serializable
,Accessor
public class BeanAccessor extends Object implements Accessor
A property accessor that uses set/get methods following JavaBean naming
conventions.
- Since:
- 1.2
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected Object
nullValue
protected String
propertyName
protected Method
readMethod
protected Method
writeMethod
-
Constructor Summary
Constructors Constructor Description BeanAccessor(Class<?> objectClass, String propertyName, Class<?> propertyType)
-
Method Summary
Modifier and Type Method Description String
getName()
Returns property name.Object
getValue(Object object)
Returns a property value of an object without disturbing the object fault status.void
setValue(Object object, Object newValue)
Sets a property value of an object without disturbing the object fault status.
-
Field Details
-
propertyName
-
readMethod
-
writeMethod
-
nullValue
-
-
Constructor Details
-
BeanAccessor
-
-
Method Details
-
getName
Description copied from interface:Accessor
Returns property name. -
getValue
Description copied from interface:Accessor
Returns a property value of an object without disturbing the object fault status.- Specified by:
getValue
in interfaceAccessor
- Throws:
PropertyException
- Since:
- 3.0
-
setValue
Description copied from interface:Accessor
Sets a property value of an object without disturbing the object fault status. Old value of the property is specified as a hint.- Specified by:
setValue
in interfaceAccessor
- Throws:
PropertyException
- Since:
- 3.0
-