aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/data/sql-access/sql-mapping.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/data/sql-access/sql-mapping.js')
-rw-r--r--node_modules/montage/data/sql-access/sql-mapping.js61
1 files changed, 61 insertions, 0 deletions
diff --git a/node_modules/montage/data/sql-access/sql-mapping.js b/node_modules/montage/data/sql-access/sql-mapping.js
new file mode 100644
index 00000000..c4e31253
--- /dev/null
+++ b/node_modules/montage/data/sql-access/sql-mapping.js
@@ -0,0 +1,61 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6/**
7 @module montage/data/sql-mapping
8 @requires montage/core/core
9 @requires montage/core/logger
10 @requires montage/data/mapping
11 */
12var Montage = require("montage").Montage;
13var BinderMapping = require("data/mapping").BinderMapping;
14var BlueprintMapping = require("data/mapping").BlueprintMapping;
15var AttributeMapping = require("data/mapping").AttributeMapping;
16var AssociationMapping = require("data/mapping").AssociationMapping;
17var logger = require("core/logger").logger("sql-mapping");
18
19/**
20 * TODO
21 @class module:montage/data/sql-access/sql-mapping.SqlBinderMapping
22 @extends module:montage/data/mapping.BinderMapping
23 */
24var SqlBinderMapping = exports.SqlBinderMapping = Montage.create(BinderMapping, /** @lends module:montage/data/sql-access/sql-mapping.SqlBinderMapping# */ {
25
26
27});
28
29
30/**
31 * TODO
32 @class module:montage/data/sql-access/sql-mapping.SqlBlueprintMapping
33 @extends module:montage/data/mapping.BlueprintMapping
34 */
35var SqlBlueprintMapping = exports.SqlBlueprintMapping = Montage.create(BlueprintMapping, /** @lends module:montage/data/sql-access/sql-mapping.SqlBlueprintMapping# */ {
36
37
38});
39
40
41/**
42 * TODO
43 @class module:montage/data/sql-access/sql-mapping.SqlAttributeMapping
44 @extends module:montage/data/mapping.AttributeMapping
45 */
46var SqlAttributeMapping = exports.SqlAttributeMapping = Montage.create(AttributeMapping, /** @lends module:montage/data/sql-access/sql-mapping.SqlAttributeMapping# */ {
47
48
49});
50
51
52/**
53 * TODO
54 @class module:montage/data/sql-access/sql-mapping.SqlAssociationMapping
55 @extends module:montage/data/mapping.AssociationMapping
56 */
57var SqlAssociationMapping = exports.SqlAssociationMapping = Montage.create(AssociationMapping, /** @lends module:montage/data/sql-access/sql-mapping.SqlAssociationMapping# */ {
58
59
60});
61