Package org.axsl.fo.fo

Examples of org.axsl.fo.fo.TableCell


         * If it takes multiple calls to completely layout the row, we need to
         * process all of the children cells not just those from the progress
         * indicator so that an area is created for each cell on the new page
         * and borders are drawn properly. */
        for (int i = 0; i < this.node.getChildCount(); i++) {
            final TableCell cell = (TableCell) this.node.getChildAt(i);
            TableCellPL cellPL;
            cellPL = (TableCellPL) this.getLayoutProxy(cell);

            final int rowSpan = cell.traitNumberRowsSpanned();
            final Status status = cellPL.layout(rowContainer, graftingPoint);
            if (status.isIncomplete()) {
               if ((this.node.traitKeepTogetherWithinColumn(areaNode)
                               == Integer.MAX_VALUE
                       && this.ignoreKeepTogether == false)
View Full Code Here

TOP

Related Classes of org.axsl.fo.fo.TableCell

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.