Package org.cipango.sipapp.rules

Examples of org.cipango.sipapp.rules.NotRule


      }
      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))
    {
View Full Code Here

TOP

Related Classes of org.cipango.sipapp.rules.NotRule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.