function Iterator(collection) {
	this.collection = collection;
}

Iterator.prototype.getCollection = function() {
	return this.collection;
}
Iterator.prototype.hasNext = function() {}
Iterator.prototype.next = function() {}