Go to the documentation of this file.00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00032 class ilQTIMatapplet
00033 {
00034 var $embedded;
00035
00036 var $label;
00037 var $uri;
00038 var $x0;
00039 var $y0;
00040 var $width;
00041 var $height;
00042 var $entityref;
00043 var $content;
00044
00045 function ilQTIMatimage()
00046 {
00047 }
00048
00049 function setEmbedded($a_embedded)
00050 {
00051 $this->embedded = $a_embedded;
00052 }
00053
00054 function getEmbedded()
00055 {
00056 return $this->embedded;
00057 }
00058
00059 function setLabel($a_label)
00060 {
00061 $this->label = $a_label;
00062 }
00063
00064 function getLabel()
00065 {
00066 return $this->label;
00067 }
00068
00069 function setHeight($a_height)
00070 {
00071 $this->height = $a_height;
00072 }
00073
00074 function getHeight()
00075 {
00076 return $this->height;
00077 }
00078
00079 function setWidth($a_width)
00080 {
00081 $this->width = $a_width;
00082 }
00083
00084 function getWidth()
00085 {
00086 return $this->width;
00087 }
00088
00089 function setUri($a_uri)
00090 {
00091 $this->uri = $a_uri;
00092 }
00093
00094 function getUri()
00095 {
00096 return $this->uri;
00097 }
00098
00099 function setX0($a_x0)
00100 {
00101 $this->x0 = $a_x0;
00102 }
00103
00104 function getX0()
00105 {
00106 return $this->x0;
00107 }
00108
00109 function setY0($a_y0)
00110 {
00111 $this->y0 = $a_y0;
00112 }
00113
00114 function getY0()
00115 {
00116 return $this->y0;
00117 }
00118
00119 function setEntityref($a_entityref)
00120 {
00121 $this->entityref = $a_entityref;
00122 }
00123
00124 function getEntityref()
00125 {
00126 return $this->entityref;
00127 }
00128
00129 function setContent($a_content)
00130 {
00131 $this->content = $a_content;
00132 }
00133
00134 function getContent()
00135 {
00136 return $this->content;
00137 }
00138 }
00139 ?>