int y = Integer.parseInt(addElement.attributeValue("y"));
int zmin = Integer.parseInt(addElement.attributeValue("zmin"));
int zmax = Integer.parseInt(addElement.attributeValue("zmax"));
temp.add(x, y).setZmin(zmin).setZmax(zmax);
}
if (!temp.validate())
{
error("Invalid polygon: " + name + "{" + temp + "}. File: " + getCurrentFileName());
}
return temp;
}