00001 <?php 00002 /* 00003 +-----------------------------------------------------------------------------+ 00004 | ILIAS open source | 00005 +-----------------------------------------------------------------------------+ 00006 | Copyright (c) 1998-2001 ILIAS open source, University of Cologne | 00007 | | 00008 | This program is free software; you can redistribute it and/or | 00009 | modify it under the terms of the GNU General Public License | 00010 | as published by the Free Software Foundation; either version 2 | 00011 | of the License, or (at your option) any later version. | 00012 | | 00013 | This program is distributed in the hope that it will be useful, | 00014 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 00015 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 00016 | GNU General Public License for more details. | 00017 | | 00018 | You should have received a copy of the GNU General Public License | 00019 | along with this program; if not, write to the Free Software | 00020 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 00021 +-----------------------------------------------------------------------------+ 00022 */ 00023 00032 class ilQTIMatimage 00033 { 00034 var $imagetype; 00035 var $label; 00036 var $height; 00037 var $width; 00038 var $uri; 00039 var $embedded; 00040 var $x0; 00041 var $y0; 00042 var $entityref; 00043 var $content; 00044 00045 function ilQTIMatimage() 00046 { 00047 } 00048 00049 function setImagetype($a_imagetype) 00050 { 00051 $this->imagetype = $a_imagetype; 00052 } 00053 00054 function getImagetype() 00055 { 00056 return $this->imagetype; 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 setEmbedded($a_embedded) 00090 { 00091 $this->embedded = $a_embedded; 00092 } 00093 00094 function getEmbedded() 00095 { 00096 return $this->embedded; 00097 } 00098 00099 function setUri($a_uri) 00100 { 00101 $this->uri = $a_uri; 00102 } 00103 00104 function getUri() 00105 { 00106 return $this->uri; 00107 } 00108 00109 function setX0($a_x0) 00110 { 00111 $this->x0 = $a_x0; 00112 } 00113 00114 function getX0() 00115 { 00116 return $this->x0; 00117 } 00118 00119 function setY0($a_y0) 00120 { 00121 $this->y0 = $a_y0; 00122 } 00123 00124 function getY0() 00125 { 00126 return $this->y0; 00127 } 00128 00129 function setEntityref($a_entityref) 00130 { 00131 $this->entityref = $a_entityref; 00132 } 00133 00134 function getEntityref() 00135 { 00136 return $this->entityref; 00137 } 00138 00139 function setContent($a_content) 00140 { 00141 $this->content = $a_content; 00142 } 00143 00144 function getContent() 00145 { 00146 return $this->content; 00147 } 00148 } 00149 ?>