/*
 * Copyright (c) 2005 Absolutely Training Limited
 * 
 * Created on 01-Dec-2005
 */
/**
 * Translation of the Java QuestionGroup class into JavaScript
 * 
 * @author paulb
 */
 
function QuestionGroup( props ) {

 	this.id = null;
 	this.contentObjectId = null;
	this.questions = [];
	this.explanation = null;
	
	for ( var p in props ) {
		this[p] = props[p];
	}
}

QuestionGroup.prototype.getId = function() {
	return this.id;
};

QuestionGroup.prototype.getContentObjectId = function() {
	return this.contentObjectId;
};

QuestionGroup.prototype.getExplanation = function() {
	return this.explanation;
};

QuestionGroup.prototype.getQuestions = function() {
	return this.questions;
};

 