ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAssSpecificFeedbackIdentifier.php
Go to the documentation of this file.
1 <?php
2 
28 {
29  protected int $feedbackId;
30 
31  protected int $questionId;
32 
33  protected int $questionIndex;
34 
35  protected int $answerIndex;
36 
37  public function getFeedbackId(): int
38  {
39  return $this->feedbackId;
40  }
41 
42  public function setFeedbackId(int $feedbackId): void
43  {
44  $this->feedbackId = $feedbackId;
45  }
46 
47  public function getQuestionId(): int
48  {
49  return $this->questionId;
50  }
51 
52  public function setQuestionId(int $questionId): void
53  {
54  $this->questionId = $questionId;
55  }
56 
57  public function getQuestionIndex(): int
58  {
59  return $this->questionIndex;
60  }
61 
62  public function setQuestionIndex(int $questionIndex): void
63  {
64  $this->questionIndex = $questionIndex;
65  }
66 
67  public function getAnswerIndex(): int
68  {
69  return $this->answerIndex;
70  }
71 
72  public function setAnswerIndex(int $answerIndex): void
73  {
74  $this->answerIndex = $answerIndex;
75  }
76 }