import uk.ac.osswatch.simal.ssmm.model.QuestionSet;
public class InfoQuestions extends QuestionSet {
public InfoQuestions() {
Question question = new Question("Project name", "What is the project name?", "Please provide a project name.");
put(question.getLabel(), question);
question = new Question("Project URL", "What is the URL for the project?", "Please provide a project URL.");
put(question.getLabel(), question);
question = new Question("Contact Name", "What is your name?", "It is useful for us to thave the name of the person completing this set of questions in case we need to talk to the project about your responses.");
put(question.getLabel(), question);
question = new Question("Contact EMail", "What is your email address?", "It is useful for us to thave your email so that we can keep you informed about updates to this set of questions.");
put(question.getLabel(), question);
}