コード例 #1
0
 /**
  * get mode
  *
  * @return mode
  */
 public String getMode() {
   return Validator.check(mode, "N/A");
 }
コード例 #2
0
 /**
  * get the part number
  *
  * @return the part number
  */
 public String getPartNumber() {
   return Validator.check(partNumber, "N/A");
 }
コード例 #3
0
 /**
  * get median
  *
  * @return median
  */
 public String getMedian() {
   return Validator.check(median, "N/A");
 }
コード例 #4
0
 /**
  * get the fourth quartile
  *
  * @return the fourth quartile
  */
 public String getQ4() {
   return Validator.check(q4, "N/A");
 }
コード例 #5
0
 /**
  * get the assessment name
  *
  * @return the name
  */
 public String getAssessmentName() {
   return Validator.check(assessmentName, "N/A");
 }
コード例 #6
0
 /**
  * get the upper quartile
  *
  * @return the upper quartile
  */
 public String getUpperQuartile() {
   return Validator.check(upperQuartile, "N/A");
 }
コード例 #7
0
 /**
  * get the second quartile
  *
  * @return the second quartile
  */
 public String getQ2() {
   return Validator.check(q2, "N/A");
 }
コード例 #8
0
 /**
  * get the adjusted score
  *
  * @return the adjusted score
  */
 public String getAdjustedScore() {
   return Validator.check(adjustedScore, "N/A");
 }
コード例 #9
0
 /**
  * get the question number
  *
  * @return the question number
  */
 public String getQuestionNumber() {
   return Validator.check(questionNumber, "N/A");
 }
コード例 #10
0
 /**
  * set the maximum score
  *
  * @return score
  */
 public String getMaxScore() {
   return Validator.check(maxScore, "N/A");
 }
コード例 #11
0
 /**
  * get the total score
  *
  * @return the total score
  */
 public String getTotalScore() {
   return Validator.check(totalScore, "N/A");
 }
コード例 #12
0
 /**
  * get the group name
  *
  * @return the name
  */
 public String getGroupName() {
   return Validator.check(groupName, "N/A");
 }
コード例 #13
0
 /**
  * get the assessment id
  *
  * @return the id
  */
 public String getAssessmentId() {
   return Validator.check(assessmentId, "0");
 }
コード例 #14
0
 /**
  * get the question title
  *
  * @return the title
  */
 public String getTitle() {
   return Validator.check(title, "N/A");
 }
コード例 #15
0
 /**
  * get the standard deviation
  *
  * @return the standard deviation
  */
 public String getStandDev() {
   return Validator.check(standDev, "N/A");
 }
コード例 #16
0
 /**
  * get the question text
  *
  * @return the question text
  */
 public String getQuestionText() {
   return Validator.check(questionText, "N/A");
 }
コード例 #17
0
 /**
  * get the lower quartile
  *
  * @return the lower quartile
  */
 public String getLowerQuartile() {
   return Validator.check(lowerQuartile, "N/A");
 }
コード例 #18
0
 /**
  * get correct answer
  *
  * @return the correct answer
  */
 public String getCorrectAnswer() {
   return Validator.check(correctAnswer, "N/A");
 }
コード例 #19
0
 /**
  * get the first quartile
  *
  * @return the first quartile
  */
 public String getQ1() {
   return Validator.check(q1, "N/A");
 }
コード例 #20
0
 /**
  * get the question type
  *
  * @return the question type
  */
 public String getQuestionType() {
   return Validator.check(questionType, "0");
 }
コード例 #21
0
 /**
  * get the third quartile
  *
  * @return the third quartile
  */
 public String getQ3() {
   return Validator.check(q3, "N/A");
 }
コード例 #22
0
 /**
  * get the percent correct
  *
  * @return the percent correct
  */
 public String getPercentCorrect() {
   return Validator.check(percentCorrect, "N/A");
 }
コード例 #23
0
 /**
  * get range
  *
  * @return range
  */
 public String getRange() {
   return Validator.check(range, "N/A");
 }
コード例 #24
0
 /**
  * get the agent
  *
  * @return the agent
  */
 public String getAgent() {
   return Validator.check(agent, "N/A");
 }