Package org.roolie.config.elmt

Examples of org.roolie.config.elmt.RuleDefinitionsElmt


  }

  protected void initRuleDefinitions(Node ruleDefinitionsNode,
    RulesConfig rulesConfig) throws XPathExpressionException
  {
    RuleDefinitionsElmt ruleDefinitionsElmt = new RuleDefinitionsElmt();
    List<RuleDefElmt> ruleDefElmts = createRuleDefElmts(ruleDefinitionsNode);
    Map<String, RuleDefElmt> ruleDefElmtsMap =
      new HashMap<String, RuleDefElmt>();
    for (RuleDefElmt ruleDefElmt : ruleDefElmts)
    {
      ruleDefElmtsMap.put(ruleDefElmt.getName(), ruleDefElmt);
    }
    ruleDefinitionsElmt.setRuleDefElmts(ruleDefElmtsMap);
    rulesConfig.setRuleDefinitionElmts(ruleDefinitionsElmt);
  }
View Full Code Here

TOP

Related Classes of org.roolie.config.elmt.RuleDefinitionsElmt

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.