Examples of traitGeneratedBy()


Examples of org.axsl.area.TableArea.traitGeneratedBy()

     */
    public Status layout(final AreaNode areaNode,
            final GraftingPoint graftingPoint) throws AreaTreeException {
        final Fo node = getFONode();
        final TableArea tableArea = (TableArea) areaNode;
        final Table table = tableArea.traitGeneratedBy();
        if (getProgress() == FONodePL.BREAK_AFTER) {
            return Status.OK;
        }

        if (getProgress() == FONodePL.START) {
View Full Code Here

Examples of org.axsl.area.TableArea.traitGeneratedBy()

     * issues.
     * @return The allocation height of the cell area.
     */
    public int getHeight(final FoContext context) {
        final TableArea tableArea = this.areaContainer.ancestorTableArea();
        final Table table = tableArea.traitGeneratedBy();
        return this.areaContainer.crBpd()
                + table.traitBorderSeparationBpd(context)
                - (this.node.traitBorderBeforeWidth(context)
                + this.node.traitBorderAfterWidth(context))
                / 2;
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.