return cond;
}
protected Condition parseLogicOr(Node n, Object template)
{
ConditionLogicOr cond = new ConditionLogicOr();
for (n = n.getFirstChild(); n != null; n = n.getNextSibling())
{
if (n.getNodeType() == Node.ELEMENT_NODE) cond.add(parseCondition(n, template));
}
if (cond.conditions == null || cond.conditions.length == 0)
_log.severe("Empty <or> condition in " + _file);
return cond;
}