364365366367368369370371372373374
{ for(n = n.getFirstChild(); n != null; n = n.getNextSibling()) { if(n.getNodeType() == Node.ELEMENT_NODE) { return new ConditionLogicNot(parseCondition(n)); } } _log.severe("Empty <not> condition in " + file); return null; }