ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 
26  private $sourcePoolDefinitionId = null;
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 }