| org.apache.ojb.broker.accesslayer.RowReader
All known Subclasses: org.apache.ojb.broker.accesslayer.RowReaderDefaultImpl, xdoclet.modules.ojb.tests.TestRowReader,
RowReader | public interface RowReader extends Serializable(Code) | | version: $Id: RowReader.java,v 1.9.2.2 2005/12/21 22:22:58 tomdz Exp $ |
serialVersionUID | final static long serialVersionUID(Code) | | |
readObjectArrayFrom | public void readObjectArrayFrom(ResultSetAndStatement rs, Map row)(Code) | | Read all fields from the current ResultRow into the Object[] row.#
ConversionStrategies are applied here!
|
readObjectFrom | public Object readObjectFrom(Map row)(Code) | | materialize a single object from the values of the Map row.
the implementor of this class must not care for materializing
references or collection attributes, this is done later!
Parameters: row - the Map containing the new values a properly created instance. |
readPkValuesFrom | public void readPkValuesFrom(ResultSetAndStatement rs, Map row)(Code) | | Read primary key fields from the current ResultRow into the Object[] row.#
ConversionStrategies are applied here!
|
refreshObject | public void refreshObject(Object instance, Map row)(Code) | | refresh an existing instance from the values of the Map row.
Parameters: instance - the instance to refresh Parameters: row - the Map containing the new values |
setClassDescriptor | public void setClassDescriptor(ClassDescriptor cld)(Code) | | Set the descriptor this RowReader worked with.
|
|
|