Package org.axsl.fo.fo

Examples of org.axsl.fo.fo.TableHeader


     * @return The status of the table header layout.
     * @throws AreaTreeException For errors.
     */
    private Status layoutTableHeader(final TableArea tableArea,
            final GraftingPoint graftingPoint) throws AreaTreeException {
        final TableHeader th = this.table.getTableHeader();
        if (th == null) {
            return Status.OK;
        }
        final TableHeaderPL tableHeaderPL = (TableHeaderPL) getLayoutProxy(th);
        final Status status = tableHeaderPL.layout(tableArea, graftingPoint);
View Full Code Here


    /**
     * Rolls back all layout for this table on the current page.
     * @param tableArea The table area which should be wiped clean.
     */
    private void resetAll(final TableArea tableArea) {
        final TableHeader header = this.table.getTableHeader();
        if (header != null) {
            final TableHeaderPL tableHeaderPL = (TableHeaderPL)
                    this.getLayoutProxy(header);
            final TableHeaderContainer headerContainer =
                    tableArea.getTableHeaderContainer();
View Full Code Here

TOP

Related Classes of org.axsl.fo.fo.TableHeader

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.