ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilTestSkillLevelThresholdImport.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 {
15  protected $importSkillBaseId = null;
19  protected $importSkillTrefId = null;
20 
24  protected $importLevelId = null;
28  protected $orderIndex = null;
29 
33  protected $threshold = null;
34 
38  protected $originalLevelTitle = null;
42  protected $originalLevelDescription = null;
43 
47  public function getImportSkillBaseId()
48  {
50  }
51 
56  {
57  $this->importSkillBaseId = $importSkillBaseId;
58  }
59 
63  public function getImportSkillTrefId()
64  {
66  }
67 
72  {
73  $this->importSkillTrefId = $importSkillTrefId;
74  }
75 
79  public function getImportLevelId()
80  {
81  return $this->importLevelId;
82  }
83 
88  {
89  $this->importLevelId = $importLevelId;
90  }
91 
95  public function getOrderIndex()
96  {
97  return $this->orderIndex;
98  }
99 
103  public function setOrderIndex($orderIndex)
104  {
105  $this->orderIndex = $orderIndex;
106  }
107 
111  public function getThreshold()
112  {
113  return $this->threshold;
114  }
115 
119  public function setThreshold($threshold)
120  {
121  $this->threshold = $threshold;
122  }
123 
127  public function getOriginalLevelTitle()
128  {
130  }
131 
136  {
137  $this->originalLevelTitle = $originalLevelTitle;
138  }
139 
143  public function getOriginalLevelDescription()
144  {
146  }
147 
152  {
153  $this->originalLevelDescription = $originalLevelDescription;
154  }
155 }