Package com.ximpleware.extended.xpath

Examples of com.ximpleware.extended.xpath.Predicate


    resetP(vn);
    position = 1;
  }
 
  public void resetP(VTDNavHuge vn){
    Predicate temp = p;
    while(temp!=null){
      temp.reset(vn);
      temp = temp.nextP;
    }
  }
View Full Code Here


      temp = temp.nextP;
    }
  }
 
  public void resetP(VTDNavHuge vn, Predicate p1){
    Predicate temp = p;
    while(temp!=p1){
      temp.reset(vn);
      temp = temp.nextP;
    }
  }
View Full Code Here

      temp = temp.nextP;
    }
  }
 
  public void adjust(int n){
    Predicate temp = p;
    while(temp!=null){
      temp.adjust(n);
      temp = temp.nextP;
    }
  }
View Full Code Here

  public boolean eval(VTDNavHuge vn, Predicate p) throws NavExceptionHuge{
      return nt.eval(vn) && evalPredicates(vn,p);
  }
 
  public boolean evalPredicates(VTDNavHuge vn) throws NavExceptionHuge {
    Predicate temp = this.p;
    while(temp!=null) {
      if (temp.eval(vn)== false)
        return false;
      temp = temp.nextP;
    }
 
    return true;
View Full Code Here

 
    return true;
  }
   
  public boolean evalPredicates(VTDNavHuge vn, Predicate p) throws NavExceptionHuge {
    Predicate temp = this.p;
    while(temp!=p) {
      if (temp.eval(vn)== false)
        return false;
      temp = temp.nextP;
   
    return true;
  }
View Full Code Here

TOP

Related Classes of com.ximpleware.extended.xpath.Predicate

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.