Examples of FootnoteRefArea


Examples of org.axsl.area.FootnoteRefArea

    public Status layout(final AreaNode areaNode,
            final GraftingPoint graftingPoint) throws AreaTreeException {
        if (getProgress() == FONodePL.START) {
            setProgress(0);
        }
        final FootnoteRefArea referenceArea = (FootnoteRefArea) areaNode;

        final int numChildren = this.node.getChildCount();
        for (int i = getProgress(); i < numChildren; i++) {
            final Fo fo = this.node.getChildAt(i);
            final FONodePL foNodePL = getLayoutProxy(fo);
View Full Code Here

Examples of org.axsl.area.FootnoteRefArea

     */
    public boolean layoutFootnote(final PageArea p,
            final GraftingPoint graftingPoint) {
        /* TODO: This needs to handle multiple body-regions properly. */
        final RegionBodyRefArea bac = p.getRegionBody("xsl-region-body");
        final FootnoteRefArea footArea = bac.getFootnoteRefArea();
        try {
            layoutFootnoteSeparator(bac, footArea);
            final Status status = layout(footArea, graftingPoint);
            if (status.isIncomplete()) {
                // add as a pending footnote
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.