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