ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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 {
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
144 {
146 }
147
152 {
153 $this->originalLevelDescription = $originalLevelDescription;
154 }
155}
An exception for terminatinating execution or to throw for unit testing.