/*
 * Copyright (c) 2005 Absolutely Training Limited
 * 
 * Created on 01-Dec-2005
 */
/**
 * Translation of the Java TrueFalseQuestion class into JavaScript
 * 
 * @author paulb
 */
function TrueFalseQuestion( question, possibleAnswers ) {
    TestQuestion.call(this, question, possibleAnswers );
}

TrueFalseQuestion.prototype = new TestQuestion(null, []);
TrueFalseQuestion.prototype.constructor = TrueFalseQuestion;



