diff options
| author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-02-17 17:25:57 +0000 |
|---|---|---|
| committer | <> | 2015-03-17 16:26:24 +0000 |
| commit | 780b92ada9afcf1d58085a83a0b9e6bc982203d1 (patch) | |
| tree | 598f8b9fa431b228d29897e798de4ac0c1d3d970 /docs/collections/tutorial/creatingentitybindings.html | |
| parent | 7a2660ba9cc2dc03a69ddfcfd95369395cc87444 (diff) | |
| download | berkeleydb-master.tar.gz | |
Diffstat (limited to 'docs/collections/tutorial/creatingentitybindings.html')
| -rw-r--r-- | docs/collections/tutorial/creatingentitybindings.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/collections/tutorial/creatingentitybindings.html b/docs/collections/tutorial/creatingentitybindings.html index 75959bf2..818b0dbf 100644 --- a/docs/collections/tutorial/creatingentitybindings.html +++ b/docs/collections/tutorial/creatingentitybindings.html @@ -14,7 +14,7 @@ <body> <div xmlns="" class="navheader"> <div class="libver"> - <p>Library Version 11.2.5.3</p> + <p>Library Version 12.1.6.1</p> </div> <table width="100%" summary="Navigation header"> <tr> @@ -50,8 +50,8 @@ mapping, while an entity binding is a two-to-one mapping. </p> <p> - The <code class="literal">partValueBinding</code>, <code class="literal">supplierValueBinding</code> and - <code class="literal">shipmentValueBinding</code> bindings are created below as entity + The <code class="literal">partDataBinding</code>, <code class="literal">supplierDataBinding</code> and + <code class="literal">shipmentDataBinding</code> bindings are created below as entity bindings rather than (in the prior examples) serial bindings. </p> <a id="entity_sampleviews"></a> @@ -69,16 +69,16 @@ public class SampleViews ClassCatalog catalog = db.getClassCatalog(); SerialBinding partKeyBinding = new SerialBinding(catalog, PartKey.class); -<strong class="userinput"><code> EntityBinding partValueBinding = +<strong class="userinput"><code> EntityBinding partDataBinding = new PartBinding(catalog, PartKey.class, PartData.class);</code></strong> SerialBinding supplierKeyBinding = new SerialBinding(catalog, SupplierKey.class); -<strong class="userinput"><code> EntityBinding supplierValueBinding = +<strong class="userinput"><code> EntityBinding supplierDataBinding = new SupplierBinding(catalog, SupplierKey.class, SupplierData.class);</code></strong> SerialBinding shipmentKeyBinding = new SerialBinding(catalog, ShipmentKey.class); -<strong class="userinput"><code> EntityBinding shipmentValueBinding = +<strong class="userinput"><code> EntityBinding shipmentDataBinding = new ShipmentBinding(catalog, ShipmentKey.class, ShipmentData.class);</code></strong> SerialBinding cityKeyBinding = |
