ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Blip.php
Go to the documentation of this file.
1 <?php
36 {
42  private $_parent;
43 
49  private $_data;
50 
56  public function getData()
57  {
58  return $this->_data;
59  }
60 
66  public function setData($data)
67  {
68  $this->_data = $data;
69  }
70 
76  public function setParent($parent)
77  {
78  $this->_parent = $parent;
79  }
80 
86  public function getParent()
87  {
88  return $this->_parent;
89  }
90 
91 }