/** * Represents a set from which samples should be gathered */ rectest.set.Set = Interface( 'Set', { /** * Create a new set from a base set and the given options * * @param {Array.} base_set base set * @param {Object} options configuration options */ __construct: [ 'base_set', 'options' ], /** * Retrieve the next element in the set * * @return {string} next element in set */ 'public getNextElement': [] } );