From 8fe92b94ce5e1e2857d088752d94e19db7e3d8a8 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Sun, 17 Jun 2012 22:31:44 -0700 Subject: montage v11 merge into ninja Signed-off-by: Valerio Virgillito --- .../montage/data/sqlaccess/sqlblueprint.js | 135 --------------------- 1 file changed, 135 deletions(-) delete mode 100755 node_modules/montage/data/sqlaccess/sqlblueprint.js (limited to 'node_modules/montage/data/sqlaccess/sqlblueprint.js') diff --git a/node_modules/montage/data/sqlaccess/sqlblueprint.js b/node_modules/montage/data/sqlaccess/sqlblueprint.js deleted file mode 100755 index 5c389e3c..00000000 --- a/node_modules/montage/data/sqlaccess/sqlblueprint.js +++ /dev/null @@ -1,135 +0,0 @@ -/* -This file contains proprietary software owned by Motorola Mobility, Inc.
-No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
-(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. -
*/ -/** - @module montage/data/sqlaccess/sqlblueprint - @requires montage/core/core - @requires montage/data/blueprint - @requires montage/data/sqlaccess/sqlselectorevaluator - @requires montage/core/logger -*/ -var Montage = require("montage").Montage; -var Blueprint = require("data/blueprint").Blueprint; -var BlueprintBinder = require("data/blueprint").BlueprintBinder; -var ToOneAttribute = require("data/blueprint").ToOneAttribute; -var ToManyAttribute = require("data/blueprint").ToManyAttribute; -var ToOneRelationship = require("data/blueprint").ToOneRelationship; -var ToManyRelationship = require("data/blueprint").ToManyRelationship; -var SqlSelectorEvaluator = require("data/sqlaccess/sqlselectorevaluator").SqlSelectorEvaluator; // registering the evaluators -var logger = require("core/logger").logger("sqlblueprint"); - -/** - @class module:montage/data/sqlaccess/sqlblueprint.SqlBlueprintBinder - @extends module:montage/data/blueprint.BlueprintBinder -*/ -var SqlBlueprintBinder = exports.SqlBlueprintBinder = Montage.create(BlueprintBinder,/** @lends module:montage/data/sqlaccess/sqlblueprint.SqlBlueprintBinder# */ { - -/** - Description TODO - @type {Property} URL - @default {String} "montage/data/sqlaccess/sqlstore" - */ - storeModuleId: { - value: "data/sqlaccess/sqlstore" - }, -/** - Description TODO - @type {Property} - @default {String} "SqlStore" - */ - storePrototypeName: { - value: "SqlStore" - }, -/** - Description TODO - @function - @returns {Function} SqlBlueprint.create() - */ - createBlueprint: { - value: function() { - return SqlBlueprint.create(); - } - } - - -}) -/** - @class module:montage/data/sqlaccess/sqlblueprint.SqlBlueprint -*/ -var SqlBlueprint = exports.SqlBlueprint = Montage.create(Blueprint,/** @lends module:montage/data/sqlaccess/sqlblueprint.SqlBlueprint# */ { - -/** - Conventional method to crete new attribute.
- This can be overwritten by specific stores. - @function - @returns {Function} SqlToOneAttribute.create() - */ - createToOneAttribute: { - value: function() { - return SqlToOneAttribute.create(); - } - }, - -/** - Conventional method to crete new attribute.
- This can be overwritten by specific stores. - @function - @returns {Function} SqlToManyAttribute.create() - */ - createToManyAttribute: { - value: function() { - return SqlToManyAttribute.create(); - } - }, - - /** - Conventional method to crete new attribute.
- This can be overwritten by specific stores. - @function - @returns {Function} SqlToOneRelationship.create() - */ - createToOneRelationship: { - value: function() { - return SqlToOneRelationship.create(); - } - }, - -/** - Conventional method to crete new attribute.
- This can be overwritten by specific stores. - @function - @returns {Function} SqlToManyRelationship.create() - */ - createToManyRelationship: { - value: function() { - return SqlToManyRelationship.create(); - } - } - -}); -/** - @class module:montage/data/sqlaccess/sqlblueprint.SqlToOneAttribute -*/ -var SqlToOneAttribute = exports.SqlToOneAttribute = Montage.create(ToOneAttribute,/** @lends module:montage/data/sqlaccess/sqlblueprint.SqlToOneAttribute# */ { - -}); -/** - @class module:montage/data/sqlaccess/sqlblueprint.SqlToOneRelationship -*/ -var SqlToOneRelationship = exports.SqlToOneRelationship = Montage.create(ToOneRelationship,/** @lends module:montage/data/sqlaccess/sqlblueprint.SqlToOneRelationship# */ { - -}); -/** - @class module:montage/data/sqlaccess/sqlblueprint.SqlToManyAttribute -*/ -var SqlToManyAttribute = exports.SqlToManyAttribute = Montage.create(ToManyAttribute,/** @lends module:montage/data/sqlaccess/sqlblueprint.SqlToManyAttribute# */ { - -}); -/** - @class module:montage/data/sqlaccess/sqlblueprint.SqlToManyRelationship -*/ -var SqlToManyRelationship = exports.SqlToManyRelationship = Montage.create(ToManyRelationship, /** @lends module:montage/data/sqlaccess/sqlblueprint.SqlToManyRelationship# */{ - -}); -- cgit v1.2.3