Inheritance diagram for collections::ship::marshal::Part:
Public Member Functions | |
void | unmarshalPrimaryKey (TupleInput keyInput) |
void | marshalPrimaryKey (TupleOutput keyOutput) |
boolean | marshalSecondaryKey (String keyName, TupleOutput keyOutput) |
Package Functions | |
final void | setKey (String number) |
In this sample, Part is bound to the stored key/data entry by implementing the MarshalledEnt interface, which is called by SampleViews.MarshalledEntityBinding.
The binding is "tricky" in that it uses this class for both the stored data entry and the combined entity object. To do this, the key field(s) are transient and are set by the binding after the data object has been deserialized. This avoids the use of a PartData class completely.
Since this class is used directly for data storage, it must be Serializable.
Definition at line 34 of file Part.java.
|
Extracts the entity's primary key and writes it to the key output. Implements collections::ship::marshal::MarshalledEnt. Definition at line 108 of file Part.java. References com::sleepycat::bind::tuple::TupleOutput::writeString(). |
|
Extracts the entity's index key and writes it to the key output. Implements collections::ship::marshal::MarshalledEnt. |
|
Set the transient key fields after deserializing. This method is only called by data bindings. |
|
Completes construction of the entity by setting its primary key from the stored primary key. Implements collections::ship::marshal::MarshalledEnt. Definition at line 103 of file Part.java. References com::sleepycat::bind::tuple::TupleInput::readString(). |