collections.ship.index |
|
Java Source File Name | Type | Comment |
PartData.java | Class | A PartData serves as the data in the key/data pair for a part entity.
In this sample, PartData is used both as the storage data for the data
as well as the object binding to the data. |
PartKey.java | Class | A PartKey serves as the key in the key/data pair for a part entity.
In this sample, PartKey is used both as the storage data for the key as
well as the object binding to the key. |
Sample.java | Class | Sample is the main entry point for the sample program and may be run as
follows:
java collections.ship.index.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. |
ShipmentData.java | Class | A ShipmentData serves as the data in the key/data pair for a shipment
entity.
In this sample, ShipmentData is used both as the storage data for the
data as well as the object binding to the data. |
ShipmentKey.java | Class | A ShipmentKey serves as the key in the key/data pair for a shipment entity.
In this sample, ShipmentKey is used both as the storage data for the key
as well as the object binding to the key. |
SupplierData.java | Class | A SupplierData serves as the data in the key/data pair for a supplier
entity.
In this sample, SupplierData is used both as the storage data for the
data as well as the object binding to the data. |
SupplierKey.java | Class | A SupplierKey serves as the key in the key/data pair for a supplier entity.
In this sample, SupplierKey is used both as the storage data for the key
as well as the object binding to the key. |
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 Serial serialized objects; therefore Weight must be Serializable. |