Package com.hlcl.rql.as

Examples of com.hlcl.rql.as.TextAnchor


   */
  public Page getLinkRowByUrl(String url) throws RQLException {
    PageArrayList linkRows = getRows();
    for (int i = 0; i < linkRows.size(); i++) {
      Page rowPg = linkRows.getPage(i);
      TextAnchor anchor = rowPg.getTextAnchor(getParameter("linkTmpltElemName"));
      if (anchor.isUrlEquals(url)) {
        return rowPg;
      }
    }
    // signal not found
    return null;
View Full Code Here

TOP

Related Classes of com.hlcl.rql.as.TextAnchor

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.