org.apache.cayenne.reflect
Class BeanAccessor
java.lang.Object
org.apache.cayenne.reflect.BeanAccessor
- All Implemented Interfaces:
- java.io.Serializable, Accessor
public class BeanAccessor
- extends java.lang.Object
- implements Accessor
A property accessor that uses set/get methods following JavaBean naming conventions.
- Since:
- 1.2
- See Also:
- Serialized Form
Constructor Summary |
BeanAccessor(java.lang.Class<?> objectClass,
java.lang.String propertyName,
java.lang.Class<?> propertyType)
|
Method Summary |
java.lang.String |
getName()
Returns property name. |
java.lang.Object |
getValue(java.lang.Object object)
Returns a property value of an object without disturbing the object fault status. |
void |
setValue(java.lang.Object object,
java.lang.Object newValue)
Sets a property value of an object without disturbing the object fault status. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
propertyName
protected java.lang.String propertyName
readMethod
protected java.lang.reflect.Method readMethod
writeMethod
protected java.lang.reflect.Method writeMethod
nullValue
protected java.lang.Object nullValue
BeanAccessor
public BeanAccessor(java.lang.Class<?> objectClass,
java.lang.String propertyName,
java.lang.Class<?> propertyType)
getName
public java.lang.String getName()
- Description copied from interface:
Accessor
- Returns property name.
- Specified by:
getName
in interface Accessor
getValue
public java.lang.Object getValue(java.lang.Object object)
throws PropertyException
- Description copied from interface:
Accessor
- Returns a property value of an object without disturbing the object fault status.
- Specified by:
getValue
in interface Accessor
- Throws:
PropertyException
- Since:
- 3.0
setValue
public void setValue(java.lang.Object object,
java.lang.Object newValue)
throws PropertyException
- 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 interface Accessor
- Throws:
PropertyException
- Since:
- 3.0
Copyright © 2001-2012 Apache Cayenne. All Rights Reserved.