Examples of BookmarkTree


Examples of org.axsl.fo.fo.BookmarkTree

    /**
     * Lays out the bookmarks for the root object.
     * @param rootFObj The root object.
     */
    private void layoutBookmarkTree(final Root rootFObj) {
        final BookmarkTree bookmarkTree = rootFObj.getBookmarkTree();
        if (bookmarkTree == null) {
            return;
        }
        this.bookmarkTreeArea = BookmarkTreeArea.makeBookmarkTreeArea(
                bookmarkTree, this);
        for (int i = 0; i < bookmarkTree.getChildCount(); i++) {
            final Bookmark bookmark = (Bookmark)
                    bookmarkTree.getChildAt(i);
            this.bookmarkTreeArea.makeBookmarkArea(bookmark);
        }
    }
View Full Code Here

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

Examples of org.foray.fotree.fo.obj.BookmarkTree

        }
        case BOOKMARK_TITLE: {
            return new BookmarkTitle(parent, propertyList);
        }
        case BOOKMARK_TREE: {
            return new BookmarkTree(parent, propertyList);
        }
        case CHANGE_BAR_BEGIN: {
            return new ChangeBarBegin(parent, propertyList);
        }
        case CHANGE_BAR_END: {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.