ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilTestRandomQuestionSetQuestion.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
12{
16 private $questionId = null;
17
21 private $sequencePosition = null;
22
27
31 public function setQuestionId($questionId)
32 {
33 $this->questionId = $questionId;
34 }
35
39 public function getQuestionId()
40 {
41 return $this->questionId;
42 }
43
48 {
49 $this->sequencePosition = $sequencePosition;
50 }
51
55 public function getSequencePosition()
56 {
58 }
59
64 {
65 $this->sourcePoolDefinitionId = $sourcePoolDefinitionId;
66 }
67
71 public function getSourcePoolDefinitionId()
72 {
74 }
75}