1 /*global $k*/
  2 
  3 /**
  4  * @class Parameter of a query
  5 **/
  6 $k.QueryParameter = function() { };
  7 
  8 /**
  9  * Returns the domains
 10  *
 11  * @function
 12  * @returns {$k.Domain[]}
 13 **/
 14 $k.QueryParameter.prototype.domains = function() { };
 15 
 16 /**
 17  * Returns the name
 18  *
 19  * @function
 20  * @returns {string}
 21 **/
 22 $k.QueryParameter.prototype.name = function() { };
 23 
 24 /**
 25  * Returns the type of the parameter
 26  *
 27  * @function
 28  * @returns {string}
 29 **/
 30 $k.QueryParameter.prototype.type = function() { };
 31 
 32