ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilTestRandomQuestionSetQuestion.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
28{
32 private $questionId = null;
33
37 private $sequencePosition = null;
38
43
47 public function setQuestionId($questionId)
48 {
49 $this->questionId = $questionId;
50 }
51
55 public function getQuestionId(): ?int
56 {
57 return $this->questionId;
58 }
59
64 {
65 $this->sequencePosition = $sequencePosition;
66 }
67
71 public function getSequencePosition(): ?int
72 {
74 }
75
80 {
81 $this->sourcePoolDefinitionId = $sourcePoolDefinitionId;
82 }
83
87 public function getSourcePoolDefinitionId(): ?int
88 {
90 }
91}