ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
DgContainer.php
Go to the documentation of this file.
1 <?php
36 {
42  private $_dgId;
43 
49  private $_lastSpId;
50 
51  private $_spgrContainer = null;
52 
53  public function getDgId()
54  {
55  return $this->_dgId;
56  }
57 
58  public function setDgId($value)
59  {
60  $this->_dgId = $value;
61  }
62 
63  public function getLastSpId()
64  {
65  return $this->_lastSpId;
66  }
67 
68  public function setLastSpId($value)
69  {
70  $this->_lastSpId = $value;
71  }
72 
73  public function getSpgrContainer()
74  {
75  return $this->_spgrContainer;
76  }
77 
78  public function setSpgrContainer($spgrContainer)
79  {
80  return $this->_spgrContainer = $spgrContainer;
81  }
82 
83 }