Examples of traitKeepWithPreviousWithinColumn()


Examples of org.axsl.fo.fo.TableRow.traitKeepWithPreviousWithinColumn()

            }
            /* FOTree is normalized so that all children are TableRows. */
            final TableRow row = (TableRow) child;
            final TableRowPL rowPL = (TableRowPL) getLayoutProxy(row);

            if (row.traitKeepWithPreviousWithinColumn(tableArea) > 0
                    && lastRow != null
                    && keepWith.indexOf(lastRow) == -1) {
                keepWith.add(lastRow);
            } else {
                /* This row has no keep-with-previous, or it is the first
View Full Code Here

Examples of org.foray.fotree.FObj.traitKeepWithPreviousWithinColumn()

            switch (subProperty) {
            case WITHIN_LINE: {
                return parent.traitKeepWithPreviousWithinLine(context);
            }
            case WITHIN_COLUMN: {
                return parent.traitKeepWithPreviousWithinColumn(context);
            }
            case WITHIN_PAGE: {
                return parent.traitKeepWithPreviousWithinPage(context);
            }
            }
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.