function checkSeeElements($elements, $modulegroup, $modulename, $eltype) {
reset($elements);
while (list($elname, $element) = each($elements)) {
if (isset($element["see"])) {
if (isset($element["see"]["var"])) {
reset($element["see"]["var"]);
while (list($k, $variable) = each($element["see"]["var"]))
if (!isset($this->elementlist["variables"][strtolower($variable["name"])])) {
$this->warn->addDocWarning($this->modulegroup[$modulegroup][$modulename]["filename"], "variables", $elname, "@see referrs to the variable '" . $variable["name"] . "' which is not defined in the class. Entry gets ignored.", "mismatch");
while (list($k, $function) = each($element["see"]["function"]))
if (!isset($this->elementlist["functions"][strtolower(substr($function["name"], 0, -2))])) {
$this->warn->addDocWarning($this->modulegroup[$modulename]["filename"], "functions", $elname, "@see referrs to the function '" . $function["name"] . "' which is not defined in the class. Entry gets ignored.", "mismatch");