1 /*global $k*/
  2 
  3 /**
  4  * @class Represents the value range of a choice attribute
  5  * @extends $k.ValueRange
  6 **/
  7 $k.ChoiceRange = function() { };
  8 
  9 /**
 10  * Returns the choice with the internal name
 11  *
 12  * @function
 13  * @param {string} internalName The internal name of the choice
 14  * @returns {$k.Choice}
 15  * @throws {$k.exception.SchemaError} If there is no such choice
 16 **/
 17 $k.ChoiceRange.prototype.choiceInternalNamed = function(internalName) { };
 18 
 19 /**
 20  * Returns the possible choices
 21  *
 22  * @function
 23  * @returns {$k.Choice[]}
 24 **/
 25 $k.ChoiceRange.prototype.choices = function() { };
 26 
 27