Class RuleEE


  • public class RuleEE
    extends Rule
    A Rule with associated preconditions
    • Constructor Detail

      • RuleEE

        public RuleEE​(Pattern p,
                      RuleTarget o,
                      int prec,
                      int min,
                      double prio,
                      int seq,
                      int part)
    • Method Detail

      • getPreconditions

        public java.util.List<Precondition> getPreconditions()
        Get the preconditions for this rule
        Returns:
        a list of preconditions that must be satisfied if this rule is to match
      • addPrecondition

        public void addPrecondition​(Precondition condition)
        Add a precondition for this rule
        Parameters:
        condition - a precondition that must be satisfied if this rule is to match
      • checkPreconditions

        public boolean checkPreconditions​(PreconditionMatcher state)
                                   throws XPathException
        Check that all preconditions for this rule are satisfied
        Parameters:
        state - holds the state for matching all rules on a rule-chain, including values of common subexpressions
        Returns:
        true if all preconditions are satisfied
        Throws:
        XPathException - if evaluation of a precondition fails