1 /*global $k*/
  2 
  3 /**
  4  * Returns an object that can be used in API calls that expect an attribute value
  5  *
  6  * @param {string} valueString A value string
  7  *
  8  * @class An attribute value string that has not been parsed.
  9 **/
 10 $k.ValueString = function(valueString) { };
 11 
 12 /**
 13  * Returns true if the values are equal
 14  *
 15  * @function
 16  * @returns {boolean}
 17 **/
 18 $k.ValueString.prototype.equals = function(value) { };
 19 
 20 /**
 21  * Sets the string representation
 22  *
 23  * @function
 24  * @param {string} string The string represantation of a value
 25 **/
 26 $k.ValueString.prototype.setValueString = function(string) { };
 27 
 28 /**
 29  * Returns the string representation
 30  *
 31  * @function
 32  * @returns {string}
 33 **/
 34 $k.ValueString.prototype.valueString = function() { };
 35 
 36