ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
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  {
72  return $this->questionIndex;
73  }
74 
79  {
80  $this->questionIndex = $questionIndex;
81  }
82 
86  public function getAnswerIndex()
87  {
88  return $this->answerIndex;
89  }
90 
94  public function setAnswerIndex($answerIndex)
95  {
96  $this->answerIndex = $answerIndex;
97  }
98 }