public MatchingRule initRule(XmlParser.Node node)
{
String name = node.getTag();
if ("and".equals(name))
{
AndRule and = new AndRule();
Iterator it = node.iterator();
while (it.hasNext())
{
Object o = it.next();
if (!(o instanceof XmlParser.Node))
continue;
and.addCriterion(initRule((XmlParser.Node) o));
}
return and;
}
else if ("equal".equals(name))
{