Searched refs:ShipmentKey (Results 1 - 18 of 18) sorted by relevance

/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/basic/
H A DShipmentKey.java6 * $Id: ShipmentKey.java,v 12.7 2008/01/08 20:58:28 bostic Exp $
14 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
16 * <p> In this sample, ShipmentKey is used both as the storage entry for the
22 public class ShipmentKey implements Serializable { class in inherits:Serializable
27 public ShipmentKey(String partNumber, String supplierNumber) { method in class:ShipmentKey
45 return "[ShipmentKey: supplier=" + supplierNumber +
H A DSample.java214 shipments.put(new ShipmentKey("P1", "S1"),
216 shipments.put(new ShipmentKey("P2", "S1"),
218 shipments.put(new ShipmentKey("P3", "S1"),
220 shipments.put(new ShipmentKey("P4", "S1"),
222 shipments.put(new ShipmentKey("P5", "S1"),
224 shipments.put(new ShipmentKey("P6", "S1"),
226 shipments.put(new ShipmentKey("P1", "S2"),
228 shipments.put(new ShipmentKey("P2", "S2"),
230 shipments.put(new ShipmentKey("P2", "S3"),
232 shipments.put(new ShipmentKey("P
[all...]
H A DSampleViews.java48 new SerialBinding(catalog, ShipmentKey.class);
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/entity/
H A DShipmentKey.java6 * $Id: ShipmentKey.java,v 12.7 2008/01/08 20:58:29 bostic Exp $
14 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
16 * <p> In this sample, ShipmentKey is used both as the storage entry for the
22 public class ShipmentKey implements Serializable { class in inherits:Serializable
27 public ShipmentKey(String partNumber, String supplierNumber) { method in class:ShipmentKey
45 return "[ShipmentKey: supplier=" + supplierNumber +
H A DSampleDatabase.java121 ShipmentKey.class,
132 ShipmentKey.class,
290 ShipmentKey shipmentKey = (ShipmentKey) primaryKeyInput;
327 ShipmentKey shipmentKey = (ShipmentKey) primaryKeyInput;
H A DSampleViews.java55 new SerialBinding(catalog, ShipmentKey.class);
57 new ShipmentBinding(catalog, ShipmentKey.class,
281 ShipmentKey key = (ShipmentKey) keyInput;
293 return new ShipmentKey(shipment.getPartNumber(),
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/index/
H A DShipmentKey.java6 * $Id: ShipmentKey.java,v 12.7 2008/01/08 20:58:30 bostic Exp $
14 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
16 * <p> In this sample, ShipmentKey is used both as the storage data for the key
22 public class ShipmentKey implements Serializable { class in inherits:Serializable
27 public ShipmentKey(String partNumber, String supplierNumber) { method in class:ShipmentKey
45 return "[ShipmentKey: supplier=" + supplierNumber +
H A DSample.java227 shipments.put(new ShipmentKey("P1", "S1"),
229 shipments.put(new ShipmentKey("P2", "S1"),
231 shipments.put(new ShipmentKey("P3", "S1"),
233 shipments.put(new ShipmentKey("P4", "S1"),
235 shipments.put(new ShipmentKey("P5", "S1"),
237 shipments.put(new ShipmentKey("P6", "S1"),
239 shipments.put(new ShipmentKey("P1", "S2"),
241 shipments.put(new ShipmentKey("P2", "S2"),
243 shipments.put(new ShipmentKey("P2", "S3"),
245 shipments.put(new ShipmentKey("P
[all...]
H A DSampleDatabase.java121 ShipmentKey.class,
132 ShipmentKey.class,
290 ShipmentKey shipmentKey = (ShipmentKey) primaryKeyInput;
327 ShipmentKey shipmentKey = (ShipmentKey) primaryKeyInput;
H A DSampleViews.java52 new SerialBinding(catalog, ShipmentKey.class);
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/sentity/
H A DShipmentKey.java6 * $Id: ShipmentKey.java,v 12.7 2008/01/08 20:58:31 bostic Exp $
12 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
14 * <p> In this sample, ShipmentKey is bound to the key's tuple storage entry
20 public class ShipmentKey { class
25 public ShipmentKey(String partNumber, String supplierNumber) { method in class:ShipmentKey
43 return "[ShipmentKey: supplier=" + supplierNumber +
H A DSampleViews.java352 return new ShipmentKey(partNumber, supplierNumber);
360 ShipmentKey key = (ShipmentKey) object;
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/tuple/
H A DShipmentKey.java6 * $Id: ShipmentKey.java,v 12.7 2008/01/08 20:58:31 bostic Exp $
12 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
14 * <p> In this sample, ShipmentKey is bound to the key's tuple storage entry
20 public class ShipmentKey { class
25 public ShipmentKey(String partNumber, String supplierNumber) { method in class:ShipmentKey
43 return "[ShipmentKey: supplier=" + supplierNumber +
H A DSampleViews.java337 return new ShipmentKey(partNumber, supplierNumber);
345 ShipmentKey key = (ShipmentKey) object;
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/factory/
H A DShipmentKey.java6 * $Id: ShipmentKey.java,v 12.7 2008/01/08 20:58:29 bostic Exp $
16 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
18 * <p> In this sample, ShipmentKey is bound to the stored key tuple entry by
24 public class ShipmentKey implements MarshalledTupleEntry { class in inherits:MarshalledTupleEntry
29 public ShipmentKey(String partNumber, String supplierNumber) { method in class:ShipmentKey
47 return "[ShipmentKey: supplier=" + supplierNumber +
53 public ShipmentKey() { method in class:ShipmentKey
H A DSampleViews.java52 ShipmentKey.class, Shipment.class, true);
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/marshal/
H A DShipmentKey.java6 * $Id: ShipmentKey.java,v 12.7 2008/01/08 20:58:30 bostic Exp $
15 * A ShipmentKey serves as the key in the key/data pair for a shipment entity.
17 * <p> In this sample, ShipmentKey is bound to the stored key tuple entry by
23 public class ShipmentKey implements MarshalledKey { class in inherits:MarshalledKey
28 public ShipmentKey(String partNumber, String supplierNumber) { method in class:ShipmentKey
46 return "[ShipmentKey: supplier=" + supplierNumber +
52 ShipmentKey() { method in class:ShipmentKey
H A DSampleViews.java59 new MarshalledKeyBinding(ShipmentKey.class);

Completed in 258 milliseconds