Package org.axsl.galley

Examples of org.axsl.galley.AreaNode


     * @param area The area whose children should be rendered.
     * @throws GalleyVisitorException For errors during rendering.
     */
    public void renderChildren(final AreaNode area) throws GalleyVisitorException {
        for (int i = 0; i < area.getChildCount(); i++) {
            final AreaNode child = area.getChildAt(i);
            child.render(this);
        }
    }
View Full Code Here


        final BookmarkTree bookmarkTree = this.areaTree.getBookmarkTree();
        if (bookmarkTree != null) {
            render(bookmarkTree);
        }
        for (int i = 0; i < this.areaTree.getChildCount(); i++) {
            final AreaNode atNode = this.areaTree.getChildAt(i);
            if (! (atNode instanceof PageCollection)) {
                atNode.render(this);
            }
        }
    }
View Full Code Here

        }
        if (area.isLinkRoot()) {
            createBasicLink(area);
        }
        for (int i = 0; i < area.getChildCount(); i++) {
            final AreaNode child = area.getChildAt(i);
            if (! (child instanceof Area)) {
                continue;
            }
            final Area areaChild = (Area) child;
            renderDestinations(areaChild);
View Full Code Here

TOP

Related Classes of org.axsl.galley.AreaNode

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.