collections.ship.tuple |
|
Java Source File Name | Type | Comment |
Part.java | Class | A Part represents the combined key/data pair for a part entity.
In this sample, Part is created from the stored key/data entry using a
SerialSerialBinding. |
PartData.java | Class | A PartData serves as the value in the key/value pair for a part entity.
In this sample, PartData is used only as the storage data for the
value, while the Part object is used as the value's object representation.
Because it is used directly as storage data using serial format, it must be
Serializable. |
PartKey.java | Class | A PartKey serves as the key in the key/data pair for a part entity.
In this sample, PartKey is bound to the key's tuple storage entry using
a TupleBinding. |
Sample.java | Class | Sample is the main entry point for the sample program and may be run as
follows:
java collections.ship.tuple.Sample
[-h ]
The default for the home directory is ./tmp -- the tmp subdirectory of
the current directory where the sample is run. |
SampleDatabase.java | Class | SampleDatabase defines the storage containers, indices and foreign keys
for the sample database. |
SampleViews.java | Class | SampleViews defines the data bindings and collection views for the sample
database. |
Shipment.java | Class | A Shipment represents the combined key/data pair for a shipment entity.
In this sample, Shipment is created from the stored key/data entry
using a SerialSerialBinding. |
ShipmentData.java | Class | A ShipmentData serves as the value in the key/value pair for a shipment
entity.
In this sample, ShipmentData is used only as the storage data for the
value, while the Shipment object is used as the value's object
representation. |
ShipmentKey.java | Class | A ShipmentKey serves as the key in the key/data pair for a shipment entity.
In this sample, ShipmentKey is bound to the key's tuple storage entry
using a TupleBinding. |
Supplier.java | Class | A Supplier represents the combined key/data pair for a supplier entity.
In this sample, Supplier is created from the stored key/data entry
using a SerialSerialBinding. |
SupplierData.java | Class | A SupplierData serves as the value in the key/value pair for a supplier
entity.
In this sample, SupplierData is used only as the storage data for the
value, while the Supplier object is used as the value's object
representation. |
SupplierKey.java | Class | A SupplierKey serves as the key in the key/data pair for a supplier entity.
In this sample, SupplierKey is bound to the key's tuple storage entry
using a TupleBinding. |
Weight.java | Class | Weight represents a weight amount and unit of measure.
In this sample, Weight is embedded in part data values which are stored
as Java serialized objects; therefore Weight must be Serializable. |