rectest/scripts/set/Set.js

22 lines
494 B
JavaScript

/**
* 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.<string>} 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': []
} );