ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilAssSpecificFeedbackIdentifier.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4
14{
18 protected $feedbackId;
19
23 protected $questionId;
24
28 protected $questionIndex;
29
33 protected $answerIndex;
34
38 public function getFeedbackId()
39 {
40 return $this->feedbackId;
41 }
42
46 public function setFeedbackId($feedbackId)
47 {
48 $this->feedbackId = $feedbackId;
49 }
50
54 public function getQuestionId()
55 {
56 return $this->questionId;
57 }
58
62 public function setQuestionId($questionId)
63 {
64 $this->questionId = $questionId;
65 }
66
70 public function getQuestionIndex()
71 {
73 }
74
79 {
80 $this->questionIndex = $questionIndex;
81 }
82
86 public function getAnswerIndex()
87 {
88 return $this->answerIndex;
89 }
90
95 {
96 $this->answerIndex = $answerIndex;
97 }
98}
An exception for terminatinating execution or to throw for unit testing.