ILIAS  release_8 Revision v8.24
class.ilTestObjectiveOrientedContainer.php
Go to the documentation of this file.
1<?php
2
26{
30 private $objId;
31
35 private $refId;
36
37 public function __construct()
38 {
39 $this->objId = null;
40 $this->refId = null;
41 }
42
46 public function getObjId(): ?int
47 {
48 return $this->objId;
49 }
50
54 public function setObjId($objId)
55 {
56 $this->objId = $objId;
57 }
58
62 public function getRefId(): ?int
63 {
64 return $this->refId;
65 }
66
70 public function setRefId($refId)
71 {
72 $this->refId = $refId;
73 }
74
79 {
80 return (bool) $this->getObjId();
81 }
82}