for(int i = 0; i < attrs.getLength(); i++)
{
Node a = attrs.item(i);
if("name".equalsIgnoreCase(a.getNodeName()))
{
cond = joinAnd(cond, new ConditionInstancedZone(a.getNodeValue()));
}
}
if(cond == null)
{
_log.severe("Unrecognized <InstancedZone> condition in " + file);