*/
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;