ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilAssQuestionSolutionComparisonExpressionImport.php
Go to the documentation of this file.
1<?php
2
26{
31
36
41
45 private $orderIndex;
46
50 private $expression;
51
55 private $points;
56
60 public function __construct()
61 {
62 $this->importQuestionId = null;
63 $this->importSkillBaseId = null;
64 $this->importSkillTrefId = null;
65 $this->orderIndex = null;
66 $this->expression = null;
67 $this->points = null;
68 }
69
73 public function getImportQuestionId(): ?int
74 {
76 }
77
82 {
83 $this->importQuestionId = $importQuestionId;
84 }
85
89 public function getImportSkillBaseId(): ?int
90 {
92 }
93
98 {
99 $this->importSkillBaseId = $importSkillBaseId;
100 }
101
105 public function getImportSkillTrefId(): ?int
106 {
108 }
109
114 {
115 $this->importSkillTrefId = $importSkillTrefId;
116 }
117
121 public function getOrderIndex(): ?int
122 {
123 return $this->orderIndex;
124 }
125
129 public function setOrderIndex($orderIndex): void
130 {
131 $this->orderIndex = $orderIndex;
132 }
133
137 public function getExpression(): ?string
138 {
139 return $this->expression;
140 }
141
145 public function setExpression($expression): void
146 {
147 $this->expression = $expression;
148 }
149
153 public function getPoints(): ?int
154 {
155 return $this->points;
156 }
157
161 public function setPoints($points): void
162 {
163 $this->points = $points;
164 }
165
166 public function sleep(): void
167 {
168 // TODO: Implement __sleep() method.
169 }
170
171 public function wakeup(): void
172 {
173 // TODO: Implement __wakeup() method.
174 }
175}