Examples of DOMHelper


Examples of org.apache.xpath.DOMHelper

   * @return An estimation of the maximum level this axes can descend to.
   */
  protected int getLevelMax()
  {

    DOMHelper dh = m_lpi.getDOMHelper();
    Node p = dh.getParentOfNode(m_root);

    return (null == p) ? 1 : dh.getLevel(p);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.