Searched refs:keyInput (Results 1 - 25 of 26) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/marshal/
H A DMarshalledKey.java35 void unmarshalKey(TupleInput keyInput); argument
H A DPartKey.java50 public void unmarshalKey(TupleInput keyInput) { argument
52 this.number = keyInput.readString();
H A DSupplierKey.java50 public void unmarshalKey(TupleInput keyInput) { argument
52 this.number = keyInput.readString();
H A DShipmentKey.java58 public void unmarshalKey(TupleInput keyInput) { argument
60 this.partNumber = keyInput.readString();
61 this.supplierNumber = keyInput.readString();
H A DMarshalledEnt.java36 void unmarshalPrimaryKey(TupleInput keyInput); argument
H A DShipment.java89 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
91 this.partNumber = keyInput.readString();
92 this.supplierNumber = keyInput.readString();
H A DPart.java102 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
104 this.number = keyInput.readString();
H A DSupplier.java95 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
97 this.number = keyInput.readString();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DMarshalledTupleKeyEntity.java40 * @param keyInput is the input tuple.
42 void unmarshalPrimaryKey(TupleInput keyInput); argument
H A DTupleTupleMarshalledBinding.java58 public Object entryToObject(TupleInput keyInput, TupleInput dataInput) { argument
74 if (keyInput != null) { // may be null if used by key extractor
75 entity.unmarshalPrimaryKey(keyInput);
H A DTupleTupleBinding.java68 * @param keyInput is the {@link TupleInput} key entry object.
74 public abstract Object entryToObject(TupleInput keyInput, argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/factory/
H A DShipmentKey.java65 public void unmarshalEntry(TupleInput keyInput) { argument
67 this.partNumber = keyInput.readString();
68 this.supplierNumber = keyInput.readString();
H A DPartKey.java56 public void unmarshalEntry(TupleInput keyInput) { argument
58 this.number = keyInput.readString();
H A DSupplierKey.java56 public void unmarshalEntry(TupleInput keyInput) { argument
58 this.number = keyInput.readString();
H A DShipment.java79 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
81 this.partNumber = keyInput.readString();
82 this.supplierNumber = keyInput.readString();
H A DPart.java92 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
94 this.number = keyInput.readString();
H A DSupplier.java85 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
87 this.number = keyInput.readString();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/sentity/
H A DSampleViews.java223 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
225 String number = keyInput.readString();
306 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
308 String number = keyInput.readString();
391 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
393 String partNumber = keyInput.readString();
394 String supplierNumber = keyInput.readString();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/tuple/
H A DSampleViews.java214 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
216 String number = keyInput.readString();
290 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
292 String number = keyInput.readString();
368 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
370 String partNumber = keyInput.readString();
371 String supplierNumber = keyInput.readString();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/serial/test/
H A DMarshalledObject.java80 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
82 primaryKey = keyInput.readString();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DMarshalledObject.java90 public void unmarshalPrimaryKey(TupleInput keyInput) { argument
92 primaryKey = keyInput.readString();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/entity/
H A DSampleViews.java185 public Object entryToObject(Object keyInput, Object dataInput) { argument
187 PartKey key = (PartKey) keyInput;
232 public Object entryToObject(Object keyInput, Object dataInput) { argument
234 SupplierKey key = (SupplierKey) keyInput;
279 public Object entryToObject(Object keyInput, Object dataInput) { argument
281 ShipmentKey key = (ShipmentKey) keyInput;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DSerialSerialBinding.java91 * @param keyInput is the deserialized key object.
97 public abstract Object entryToObject(Object keyInput, Object dataInput); argument
H A DTupleSerialBinding.java88 * @param keyInput is the {@link TupleInput} key entry object.
94 public abstract Object entryToObject(TupleInput keyInput, argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DPersistEntityBinding.java78 RecordInput keyInput = new RecordInput
88 reader.readPriKey(entity, keyInput, rawAccess);

Completed in 140 milliseconds

12