Package org.axsl.fo.fo

Examples of org.axsl.fo.fo.TableFooter


            }
        }

        if (this.table.getTableFooter() != null
                && this.table.traitTableOmitFooterAtBreak(areaNode)) {
            final TableFooter tf = this.table.getTableFooter();
            final TableFooterPL tfPL = (TableFooterPL) getLayoutProxy(tf);
            status = tfPL.layout(tableArea, graftingPoint);
            if (status.isIncomplete()) {
                // this is a problem since we need to remove a row
                // from the last table body and place it on the
View Full Code Here


     * @return The status of the table footer layout.
     * @throws AreaTreeException For errors.
     */
    private Status layoutTableFooter(final TableArea tableArea,
            final GraftingPoint graftingPoint) throws AreaTreeException {
        final TableFooter tf = this.table.getTableFooter();
        if (tf == null) {
            return Status.OK;
        }
        /* Don't worry about traitTableOmitFooterAtBreak here. That is handled
         * elsewhere. */
 
View Full Code Here

            final TableHeaderContainer headerContainer =
                    tableArea.getTableHeaderContainer();
            tableArea.removeChild(headerContainer);
            tableHeaderPL.resetProgress();
        }
        final TableFooter footer = this.table.getTableFooter();
        if (footer != null) {
            final TableFooterPL tableFooterPL = (TableFooterPL)
                    this.getLayoutProxy(footer);
            final TableFooterContainer footerContainer =
                tableArea.getTableFooterContainer();
View Full Code Here

TOP

Related Classes of org.axsl.fo.fo.TableFooter

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.