Public Member Functions | |
| ilQTIFlow () | |
| setComment ($a_comment) | |
| getComment () | |
| addFlow ($a_flow, $a_index) | |
| addMaterial ($a_material, $a_index) | |
| addMaterial_ref ($a_material_ref, $a_index) | |
| addResponse ($a_response, $a_index) | |
Data Fields | |
| $comment | |
| $flow | |
| $material | |
| $material_ref | |
| $response | |
Definition at line 32 of file class.ilQTIFlow.php.
| ilQTIFlow::addFlow | ( | $ | a_flow, | |
| $ | a_index | |||
| ) |
Definition at line 58 of file class.ilQTIFlow.php.
{
$this->flow[$a_index] = $a_flow;
}
| ilQTIFlow::addMaterial | ( | $ | a_material, | |
| $ | a_index | |||
| ) |
Definition at line 63 of file class.ilQTIFlow.php.
{
$this->material[$a_index] = $a_material;
}
| ilQTIFlow::addMaterial_ref | ( | $ | a_material_ref, | |
| $ | a_index | |||
| ) |
Definition at line 68 of file class.ilQTIFlow.php.
{
$this->material_ref[$a_index] = $a_material_ref;
}
| ilQTIFlow::addResponse | ( | $ | a_response, | |
| $ | a_index | |||
| ) |
Definition at line 73 of file class.ilQTIFlow.php.
{
$this->response[$a_index] = $a_response;
}
| ilQTIFlow::getComment | ( | ) |
Definition at line 53 of file class.ilQTIFlow.php.
{
return $this->comment;
}
| ilQTIFlow::ilQTIFlow | ( | ) |
Definition at line 40 of file class.ilQTIFlow.php.
{
$this->flow = array();
$this->material = array();
$this->material_ref = array();
$this->response = array();
}
| ilQTIFlow::setComment | ( | $ | a_comment | ) |
Definition at line 48 of file class.ilQTIFlow.php.
{
$this->comment = $a_comment;
}
| ilQTIFlow::$comment |
Definition at line 34 of file class.ilQTIFlow.php.
| ilQTIFlow::$flow |
Definition at line 35 of file class.ilQTIFlow.php.
| ilQTIFlow::$material |
Definition at line 36 of file class.ilQTIFlow.php.
| ilQTIFlow::$material_ref |
Definition at line 37 of file class.ilQTIFlow.php.
| ilQTIFlow::$response |
Definition at line 38 of file class.ilQTIFlow.php.
1.7.1