ILIAS  release_8 Revision v8.24
class.ilQTIOutcomes.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
31{
32 public ?string $comment = null;
34 public array $decvar = [];
35
36 public function setComment(string $a_comment): void
37 {
38 $this->comment = $a_comment;
39 }
40
41 public function getComment(): ?string
42 {
43 return $this->comment;
44 }
45
46 public function addDecvar(ilQTIDecvar $a_decvar): void
47 {
48 $this->decvar[] = $a_decvar;
49 }
50}
setComment(string $a_comment)
addDecvar(ilQTIDecvar $a_decvar)