Examples of FootnoteBody


Examples of org.axsl.fo.fo.FootnoteBody

     * @param pageArea The page onto which the pending footnotes should be
     * added.
     */
    private void setPendingFootnotes(final PageArea pageArea) {
        for (int i = 0; i < this.pendingFootnotes.size(); i++) {
            final FootnoteBody fb = this.pendingFootnotes.get(i);
            final FootnoteBodyPL fbPL = (FootnoteBodyPL) this.getLayoutProxy(
                    fb);
            if (! fbPL.layoutFootnote(pageArea, null)) {
                // footnotes are too large to fit on empty page
            }
View Full Code Here

Examples of org.axsl.fo.fo.FootnoteBody

        if (status.isIncomplete()) {
            return status;
        }

        /* Layout the FootnoteBody. */
        final FootnoteBody fbody = this.node.getFootnoteBody();
        final FootnoteBodyPL fbPL = (FootnoteBodyPL) getLayoutProxy(fbody);
        final PageArea page = areaNode.getPage();
        /* If the footnote cannot be entirely laid out on the current page,
         * it will be added to the list of pending footnotes. */
        fbPL.layoutFootnote(page, graftingPoint);
View Full Code Here

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

        }
        case FOOTNOTE: {
            return new Footnote(parent, propertyList);
        }
        case FOOTNOTE_BODY: {
            return new FootnoteBody(parent, propertyList);
        }
        case INDEX_KEY_REFERENCE: {
            return new IndexKeyReference(parent, propertyList);
        }
        case INDEX_PAGE_CITATION_LIST: {
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.