Package org.axsl.galley

Examples of org.axsl.galley.BookmarkTree


     * are direct children of AreaTree instead of a PageCollection. This
     * includes items like Destinations and Bookmarks.
     * @throws GalleyVisitorException For errors during rendering.
     */
    protected void renderDocumentNodes() throws GalleyVisitorException {
        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);
View Full Code Here

TOP

Related Classes of org.axsl.galley.BookmarkTree

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.