ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
class.ilQTIMatapplet.php
Go to the documentation of this file.
1
<?php
2
/*
3
+-----------------------------------------------------------------------------+
4
| ILIAS open source |
5
+-----------------------------------------------------------------------------+
6
| Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7
| |
8
| This program is free software; you can redistribute it and/or |
9
| modify it under the terms of the GNU General Public License |
10
| as published by the Free Software Foundation; either version 2 |
11
| of the License, or (at your option) any later version. |
12
| |
13
| This program is distributed in the hope that it will be useful, |
14
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
15
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16
| GNU General Public License for more details. |
17
| |
18
| You should have received a copy of the GNU General Public License |
19
| along with this program; if not, write to the Free Software |
20
| Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21
+-----------------------------------------------------------------------------+
22
*/
23
32
class
ilQTIMatapplet
33
{
34
public
$embedded
;
35
36
public
$label
;
37
public
$uri
;
38
public
$x0
;
39
public
$y0
;
40
public
$width
;
41
public
$height
;
42
public
$entityref
;
43
public
$content
;
44
45
public
function
__construct
()
46
{
47
}
48
49
public
function
setEmbedded
($a_embedded)
50
{
51
$this->embedded = $a_embedded;
52
}
53
54
public
function
getEmbedded
()
55
{
56
return
$this->embedded
;
57
}
58
59
public
function
setLabel
($a_label)
60
{
61
$this->label = $a_label;
62
}
63
64
public
function
getLabel
()
65
{
66
return
$this->label
;
67
}
68
69
public
function
setHeight
($a_height)
70
{
71
$this->height = $a_height;
72
}
73
74
public
function
getHeight
()
75
{
76
return
$this->height
;
77
}
78
79
public
function
setWidth
($a_width)
80
{
81
$this->width = $a_width;
82
}
83
84
public
function
getWidth
()
85
{
86
return
$this->width
;
87
}
88
89
public
function
setUri
($a_uri)
90
{
91
$this->uri = $a_uri;
92
}
93
94
public
function
getUri
()
95
{
96
return
$this->uri
;
97
}
98
99
public
function
setX0
($a_x0)
100
{
101
$this->x0 = $a_x0;
102
}
103
104
public
function
getX0
()
105
{
106
return
$this->x0
;
107
}
108
109
public
function
setY0
($a_y0)
110
{
111
$this->y0 = $a_y0;
112
}
113
114
public
function
getY0
()
115
{
116
return
$this->y0
;
117
}
118
119
public
function
setEntityref
($a_entityref)
120
{
121
$this->entityref = $a_entityref;
122
}
123
124
public
function
getEntityref
()
125
{
126
return
$this->entityref
;
127
}
128
129
public
function
setContent
(
$a_content
)
130
{
131
$this->content =
$a_content
;
132
}
133
134
public
function
getContent
()
135
{
136
return
$this->content
;
137
}
138
}
ilQTIMatapplet\getContent
getContent()
Definition:
class.ilQTIMatapplet.php:134
ilQTIMatapplet\getWidth
getWidth()
Definition:
class.ilQTIMatapplet.php:84
ilQTIMatapplet\getEmbedded
getEmbedded()
Definition:
class.ilQTIMatapplet.php:54
ilQTIMatapplet\setUri
setUri($a_uri)
Definition:
class.ilQTIMatapplet.php:89
ilQTIMatapplet\setEntityref
setEntityref($a_entityref)
Definition:
class.ilQTIMatapplet.php:119
ilQTIMatapplet
Definition:
class.ilQTIMatapplet.php:32
ilQTIMatapplet\setContent
setContent($a_content)
Definition:
class.ilQTIMatapplet.php:129
ilQTIMatapplet\getHeight
getHeight()
Definition:
class.ilQTIMatapplet.php:74
ilQTIMatapplet\setY0
setY0($a_y0)
Definition:
class.ilQTIMatapplet.php:109
ilQTIMatapplet\getUri
getUri()
Definition:
class.ilQTIMatapplet.php:94
ilQTIMatapplet\$entityref
$entityref
Definition:
class.ilQTIMatapplet.php:42
ilQTIMatapplet\__construct
__construct()
Definition:
class.ilQTIMatapplet.php:45
ilQTIMatapplet\$y0
$y0
Definition:
class.ilQTIMatapplet.php:39
ilQTIMatapplet\$label
$label
Definition:
class.ilQTIMatapplet.php:36
ilQTIMatapplet\getEntityref
getEntityref()
Definition:
class.ilQTIMatapplet.php:124
$a_content
$a_content
Definition:
workflow.php:93
ilQTIMatapplet\$content
$content
Definition:
class.ilQTIMatapplet.php:43
ilQTIMatapplet\setLabel
setLabel($a_label)
Definition:
class.ilQTIMatapplet.php:59
ilQTIMatapplet\setWidth
setWidth($a_width)
Definition:
class.ilQTIMatapplet.php:79
ilQTIMatapplet\$x0
$x0
Definition:
class.ilQTIMatapplet.php:38
ilQTIMatapplet\getX0
getX0()
Definition:
class.ilQTIMatapplet.php:104
ilQTIMatapplet\getY0
getY0()
Definition:
class.ilQTIMatapplet.php:114
ilQTIMatapplet\getLabel
getLabel()
Definition:
class.ilQTIMatapplet.php:64
ilQTIMatapplet\$height
$height
Definition:
class.ilQTIMatapplet.php:41
ilQTIMatapplet\setEmbedded
setEmbedded($a_embedded)
Definition:
class.ilQTIMatapplet.php:49
ilQTIMatapplet\$width
$width
Definition:
class.ilQTIMatapplet.php:40
ilQTIMatapplet\setX0
setX0($a_x0)
Definition:
class.ilQTIMatapplet.php:99
ilQTIMatapplet\setHeight
setHeight($a_height)
Definition:
class.ilQTIMatapplet.php:69
ilQTIMatapplet\$uri
$uri
Definition:
class.ilQTIMatapplet.php:37
ilQTIMatapplet\$embedded
$embedded
Definition:
class.ilQTIMatapplet.php:34
Services
QTI
classes
class.ilQTIMatapplet.php
Generated on Sat Jan 18 2025 19:01:36 for ILIAS by
1.8.13 (using
Doxyfile
)