1 /*global $k*/
  2 
  3 /**
  4  * @class A collection of topics
  5  * @extends $k.PersistentCollection
  6 **/
  7 $k.SemanticCollection = function() { };
  8 
  9 /**
 10  * Returns the elements of of the collection
 11  *
 12  * @function
 13  * @returns {$k.SemanticElement[]}
 14 **/
 15 $k.SemanticCollection.prototype.elements = function() { };
 16 
 17