* Liefert alle Kindseiten, die an allen Links dieses DynLink-Sets angehängt sind.
*/
public PageArrayList getChildPages() throws RQLException {
java.util.List anchors = getAnchors();
PageArrayList result = new PageArrayList(anchors.size());
// collect all anchors child pages
for (Iterator iter = anchors.iterator(); iter.hasNext();) {
Anchor anchor = (Anchor) iter.next();
Page childOrNull = anchor.getChildPage();
if (childOrNull != null) {
result.add(childOrNull);
}
}
return result;
}