}
return or;
}
else if ("not".equals(name))
{
NotRule not = new NotRule();
Iterator it = node.iterator();
while (it.hasNext())
{
Object o = it.next();
if (!(o instanceof XmlParser.Node))
continue;
not.setCriterion(initRule((XmlParser.Node) o));
}
return not;
}
else if ("contains".equals(name))
{