ILIAS  release_8 Revision v8.24
class.ilQTIMatapplet.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
31{
32 public ?string $embedded = null;
33 public ?string $label = null;
34 public ?string $uri = null;
35 public ?string $x0 = null;
36 public ?string $y0 = null;
37 public ?string $width = null;
38 public ?string $height = null;
39 public ?string $entityref = null;
40 public ?string $content = null;
41
42 public function setEmbedded(string $a_embedded): void
43 {
44 $this->embedded = $a_embedded;
45 }
46
47 public function getEmbedded(): ?string
48 {
49 return $this->embedded;
50 }
51
52 public function setLabel(string $a_label): void
53 {
54 $this->label = $a_label;
55 }
56
57 public function getLabel(): ?string
58 {
59 return $this->label;
60 }
61
62 public function setHeight(string $a_height): void
63 {
64 $this->height = $a_height;
65 }
66
67 public function getHeight(): ?string
68 {
69 return $this->height;
70 }
71
72 public function setWidth(string $a_width): void
73 {
74 $this->width = $a_width;
75 }
76
77 public function getWidth(): ?string
78 {
79 return $this->width;
80 }
81
82 public function setUri(string $a_uri): void
83 {
84 $this->uri = $a_uri;
85 }
86
87 public function getUri(): ?string
88 {
89 return $this->uri;
90 }
91
92 public function setX0(string $a_x0): void
93 {
94 $this->x0 = $a_x0;
95 }
96
97 public function getX0(): ?string
98 {
99 return $this->x0;
100 }
101
102 public function setY0(string $a_y0): void
103 {
104 $this->y0 = $a_y0;
105 }
106
107 public function getY0(): ?string
108 {
109 return $this->y0;
110 }
111
112 public function setEntityref(string $a_entityref): void
113 {
114 $this->entityref = $a_entityref;
115 }
116
117 public function getEntityref(): ?string
118 {
119 return $this->entityref;
120 }
121
122 public function setContent(string $a_content): void
123 {
124 $this->content = $a_content;
125 }
126
127 public function getContent(): ?string
128 {
129 return $this->content;
130 }
131}
setEntityref(string $a_entityref)
setContent(string $a_content)
setEmbedded(string $a_embedded)
setHeight(string $a_height)
setUri(string $a_uri)
setLabel(string $a_label)
setWidth(string $a_width)