ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilTestObjectiveOrientedContainer.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 
12 {
16  private $objId;
17 
21  private $refId;
22 
23  public function __construct()
24  {
25  $this->objId = null;
26  $this->refId = null;
27  }
28 
32  public function getObjId()
33  {
34  return $this->objId;
35  }
36 
40  public function setObjId($objId)
41  {
42  $this->objId = $objId;
43  }
44 
48  public function getRefId()
49  {
50  return $this->refId;
51  }
52 
56  public function setRefId($refId)
57  {
58  $this->refId = $refId;
59  }
60 
65  {
66  return (bool) $this->getObjId();
67  }
68 }