ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
DggContainer.php
Go to the documentation of this file.
1 <?php
36 {
42  private $_spIdMax;
43 
49  private $_cDgSaved;
50 
56  private $_cSpSaved;
57 
64 
70  private $_OPT = array();
71 
77  private $_IDCLs = array();
78 
84  public function getSpIdMax()
85  {
86  return $this->_spIdMax;
87  }
88 
94  public function setSpIdMax($value)
95  {
96  $this->_spIdMax = $value;
97  }
98 
104  public function getCDgSaved()
105  {
106  return $this->_cDgSaved;
107  }
108 
114  public function setCDgSaved($value)
115  {
116  $this->_cDgSaved = $value;
117  }
118 
124  public function getCSpSaved()
125  {
126  return $this->_cSpSaved;
127  }
128 
134  public function setCSpSaved($value)
135  {
136  $this->_cSpSaved = $value;
137  }
138 
144  public function getBstoreContainer()
145  {
147  }
148 
154  public function setBstoreContainer($bstoreContainer)
155  {
156  $this->_bstoreContainer = $bstoreContainer;
157  }
158 
165  public function setOPT($property, $value)
166  {
167  $this->_OPT[$property] = $value;
168  }
169 
176  public function getOPT($property)
177  {
178  if (isset($this->_OPT[$property])) {
179  return $this->_OPT[$property];
180  }
181  return null;
182  }
183 
189  public function getIDCLs()
190  {
191  return $this->_IDCLs;
192  }
193 
199  public function setIDCLs($pValue)
200  {
201  $this->_IDCLs = $pValue;
202  }
203 }