ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilAssQuestionSolutionComparisonExpressionImport.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
11 {
16 
21 
26 
30  private $orderIndex;
31 
35  private $expression;
36 
40  private $points;
41 
45  public function __construct()
46  {
47  $this->importQuestionId = null;
48  $this->importSkillBaseId = null;
49  $this->importSkillTrefId = null;
50  $this->orderIndex = null;
51  $this->expression = null;
52  $this->points = null;
53  }
54 
58  public function getImportQuestionId()
59  {
61  }
62 
67  {
68  $this->importQuestionId = $importQuestionId;
69  }
70 
74  public function getImportSkillBaseId()
75  {
77  }
78 
83  {
84  $this->importSkillBaseId = $importSkillBaseId;
85  }
86 
90  public function getImportSkillTrefId()
91  {
93  }
94 
99  {
100  $this->importSkillTrefId = $importSkillTrefId;
101  }
102 
106  public function getOrderIndex()
107  {
108  return $this->orderIndex;
109  }
110 
114  public function setOrderIndex($orderIndex)
115  {
116  $this->orderIndex = $orderIndex;
117  }
118 
122  public function getExpression()
123  {
124  return $this->expression;
125  }
126 
130  public function setExpression($expression)
131  {
132  $this->expression = $expression;
133  }
134 
138  public function getPoints()
139  {
140  return $this->points;
141  }
142 
146  public function setPoints($points)
147  {
148  $this->points = $points;
149  }
150 
151  public function sleep()
152  {
153  // TODO: Implement __sleep() method.
154  }
155 
156  public function wakeup()
157  {
158  // TODO: Implement __wakeup() method.
159  }
160 }