ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilQTIOutcomes.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
30{
31 public ?string $comment = null;
33 public array $decvar = [];
34
35 public function setComment(string $a_comment): void
36 {
37 $this->comment = $a_comment;
38 }
39
40 public function getComment(): ?string
41 {
42 return $this->comment;
43 }
44
45 public function addDecvar(ilQTIDecvar $a_decvar): void
46 {
47 $this->decvar[] = $a_decvar;
48 }
49}
setComment(string $a_comment)
addDecvar(ilQTIDecvar $a_decvar)