001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/archive/tags/sakai_2-4-1/import-impl/src/java/org/sakaiproject/importer/impl/importables/QuestionPool.java $
003: * $Id: QuestionPool.java 17726 2006-11-01 15:39:28Z lance@indiana.edu $
004: ***********************************************************************************
005: *
006: * Copyright (c) 2006 The Sakai Foundation.
007: *
008: * Licensed under the Educational Community License, Version 1.0 (the "License");
009: * you may not use this file except in compliance with the License.
010: * You may obtain a copy of the License at
011: *
012: * http://www.opensource.org/licenses/ecl1.php
013: *
014: * Unless required by applicable law or agreed to in writing, software
015: * distributed under the License is distributed on an "AS IS" BASIS,
016: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017: * See the License for the specific language governing permissions and
018: * limitations under the License.
019: *
020: **********************************************************************************/package org.sakaiproject.importer.impl.importables;
021:
022: import java.util.List;
023:
024: public class QuestionPool extends AbstractImportable {
025:
026: private String title;
027: private String description;
028: private List essayQuestions;
029: private List multiChoiceQuestions;
030: private List fillBlankQuestions;
031: private List matchQuestions;
032: private List multiAnswerQuestions;
033: private List trueFalseQuestions;
034: private List orderingQuestions;
035:
036: public String getDescription() {
037: return description;
038: }
039:
040: public void setDescription(String description) {
041: this .description = description;
042: }
043:
044: public List getEssayQuestions() {
045: return essayQuestions;
046: }
047:
048: public void setEssayQuestions(List essayQuestions) {
049: this .essayQuestions = essayQuestions;
050: }
051:
052: public List getFillBlankQuestions() {
053: return fillBlankQuestions;
054: }
055:
056: public void setFillBlankQuestions(List fillBlankQuestions) {
057: this .fillBlankQuestions = fillBlankQuestions;
058: }
059:
060: public List getMatchQuestions() {
061: return matchQuestions;
062: }
063:
064: public void setMatchQuestions(List matchQuestions) {
065: this .matchQuestions = matchQuestions;
066: }
067:
068: public List getMultiAnswerQuestions() {
069: return multiAnswerQuestions;
070: }
071:
072: public void setMultiAnswerQuestions(List multiAnswerQuestions) {
073: this .multiAnswerQuestions = multiAnswerQuestions;
074: }
075:
076: public List getMultiChoiceQuestions() {
077: return multiChoiceQuestions;
078: }
079:
080: public void setMultiChoiceQuestions(List multiChoiceQuestions) {
081: this .multiChoiceQuestions = multiChoiceQuestions;
082: }
083:
084: public List getOrderingQuestions() {
085: return orderingQuestions;
086: }
087:
088: public void setOrderingQuestions(List orderingQuestions) {
089: this .orderingQuestions = orderingQuestions;
090: }
091:
092: public String getTitle() {
093: return title;
094: }
095:
096: public void setTitle(String title) {
097: this .title = title;
098: }
099:
100: public List getTrueFalseQuestions() {
101: return trueFalseQuestions;
102: }
103:
104: public void setTrueFalseQuestions(List trueFalseQuestions) {
105: this .trueFalseQuestions = trueFalseQuestions;
106: }
107:
108: public String getTypeName() {
109: return "sakai-question-pool";
110: }
111:
112: }
|